Skip to content

Commit

Permalink
build: set minimum Node.js version to 12.13
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
Node.js version 10 will become EOL on 2021-04-30.
Angular CLI 12 will require Node.js 12.13+ or 14.15+. Node.js 12.13 and 14.15 are the first LTS releases for their respective majors.
  • Loading branch information
alan-agius4 committed Feb 8, 2021
1 parent 61aed05 commit 0404faf
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/aspnetcore-engine/package.json
Expand Up @@ -17,7 +17,7 @@
"universal"
],
"engines": {
"node": ">=10.13.0"
"node": ">=12.13.0"
},
"dependencies": {
"domino": "^2.1.6",
Expand Down
3 changes: 3 additions & 0 deletions modules/builders/package.json
Expand Up @@ -4,6 +4,9 @@
"description": "Angular Universal builders package",
"homepage": "https://github.com/angular/universal#readme",
"license": "MIT",
"engines": {
"node": ">=12.13.0"
},
"keywords": [
"ssr",
"universal",
Expand Down
2 changes: 1 addition & 1 deletion modules/common/package.json
Expand Up @@ -8,7 +8,7 @@
"universal"
],
"engines": {
"node": ">=10.13.0"
"node": ">=12.13.0"
},
"dependencies": {
"critters": "0.0.6",
Expand Down
2 changes: 1 addition & 1 deletion modules/express-engine/package.json
Expand Up @@ -9,7 +9,7 @@
"universal"
],
"engines": {
"node": ">=10.13.0"
"node": ">=12.13.0"
},
"peerDependencies": {
"@angular/common": "NG_VERSION",
Expand Down
2 changes: 1 addition & 1 deletion modules/hapi-engine/package.json
Expand Up @@ -9,7 +9,7 @@
"universal"
],
"engines": {
"node": ">=10.13.0"
"node": ">=12.13.0"
},
"peerDependencies": {
"@angular/common": "NG_VERSION",
Expand Down
2 changes: 1 addition & 1 deletion modules/socket-engine/package.json
Expand Up @@ -9,7 +9,7 @@
"universal"
],
"engines": {
"node": ">=10.13.0"
"node": ">=12.13.0"
},
"dependencies": {
"tslib": "TSLIB_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -17,7 +17,7 @@
"engine-strict": true
},
"engines": {
"node": ">=10.13.0 <13.0.0",
"node": ">=12.13.0 <15.0.0",
"yarn": ">=1.0.0"
},
"scripts": {
Expand Down

0 comments on commit 0404faf

Please sign in to comment.