Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 78cf7b7

Browse files
committed
feat(@nguniversal/common): add support for Node.js version 18
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`.
1 parent 58a6b96 commit 78cf7b7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/builders/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://github.com/angular/universal#readme",
66
"license": "MIT",
77
"engines": {
8-
"node": "^14.15.0 || >=16.10.0"
8+
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
99
},
1010
"keywords": [
1111
"ssr",

modules/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"default": "./tools/bundles/index.js"
1313
},
1414
"engines": {
15-
"node": "^14.15.0 || >=16.10.0"
15+
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
1616
},
1717
"dependencies": {
1818
"critters": "0.0.16",

modules/express-engine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"universal"
1010
],
1111
"engines": {
12-
"node": "^14.15.0 || >=16.10.0"
12+
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
1313
},
1414
"peerDependencies": {
1515
"@angular/common": "NG_VERSION",

0 commit comments

Comments
 (0)