Skip to content

Commit

Permalink
feat(@nguniversal/common): add support for Node.js version 18
Browse files Browse the repository at this point in the history
This change aligns with the supported Node.js versions of the Angular CLI.
See: angular/angular-cli#24026

BREAKING CHANGE: Angular universal no longer supports Node.js versions `14.[15-19].x` and `16.[10-12].x`. Current supported versions of Node.js are `14.20.x`, `16.13.x` and `18.10.x`.
  • Loading branch information
alan-agius4 committed Oct 11, 2022
1 parent 58a6b96 commit 78cf7b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/builders/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "https://github.com/angular/universal#readme",
"license": "MIT",
"engines": {
"node": "^14.15.0 || >=16.10.0"
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"keywords": [
"ssr",
Expand Down
2 changes: 1 addition & 1 deletion modules/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"default": "./tools/bundles/index.js"
},
"engines": {
"node": "^14.15.0 || >=16.10.0"
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"dependencies": {
"critters": "0.0.16",
Expand Down
2 changes: 1 addition & 1 deletion modules/express-engine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"universal"
],
"engines": {
"node": "^14.15.0 || >=16.10.0"
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/common": "NG_VERSION",
Expand Down

0 comments on commit 78cf7b7

Please sign in to comment.