Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Project
.idea

# Node
node_modules

# macOS
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes

## Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/

# Package Managers
yarn-error.log
npm-debug.log

# Cache
.awcache
10 changes: 5 additions & 5 deletions 01-first-component/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "angular-fundamentals-seed",
"name": "angular-fundamentals-seed-01",
"version": "0.1.0",
"description": "Ultimate Angular: Angular Fundamentals Seed",
"repository": {
Expand All @@ -23,7 +23,7 @@
"zone.js": "0.7.4"
},
"scripts": {
"prestart": "webpack --config vendor/webpack.config.js",
"build:vendor": "webpack --config vendor/webpack.config.js",
"start": "webpack-dev-server"
},
"devDependencies": {
Expand All @@ -34,13 +34,13 @@
"chalk": "1.1.3",
"core-js": "2.4.1",
"json-server": "0.9.4",
"node-sass": "3.13.0",
"node-sass": "4.14.1",
"progress-bar-webpack-plugin": "1.9.0",
"raw-loader": "0.5.1",
"resolve-url-loader": "1.6.0",
"sass-loader": "4.0.2",
"sass-loader": "6.0.7",
"typescript": "2.1.4",
"webpack": "2.2.0-rc.3",
"webpack": "2.7.0",
"webpack-dev-server": "2.2.0-rc.0"
}
}
Loading