Skip to content

Commit

Permalink
refactor: set minimum node version to 8.9
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
@angular/cli, @ngtools/webpack, @ngtools/logger, and @ngtools/json-schema now require NodeJS 8.9+
  • Loading branch information
clydin authored and hansl committed Feb 20, 2018
1 parent 3be17e7 commit 29338bc
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6
8
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"url": "https://github.com/angular/angular-cli.git"
},
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.0.0"
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"author": "Angular Authors",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/@angular/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"url": "https://github.com/angular/angular-cli.git"
},
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.0.0"
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"author": "Angular Authors",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/@ngtools/json-schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
},
"homepage": "https://github.com/angular/angular-cli/tree/master/packages/@ngtools/json-schema",
"engines": {
"node": ">= 4.1.0",
"npm": ">= 3.0.0"
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"dependencies": {
},
Expand Down
4 changes: 2 additions & 2 deletions packages/@ngtools/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
},
"homepage": "https://github.com/angular/angular-cli/tree/master/packages/@ngtools/logger",
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.0.0"
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"dependencies": {
"rxjs": "^5.0.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/@ngtools/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
},
"homepage": "https://github.com/angular/angular-cli/tree/master/packages/@ngtools/webpack",
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.0.0"
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"dependencies": {
"tree-kill": "^1.0.0",
Expand Down

0 comments on commit 29338bc

Please sign in to comment.