8000 fix: remove Node.js v18 support · ng-packagr/ng-packagr@69d9d9e · GitHub
[go: up one dir, main page]

Skip to content

Commit 69d9d9e

Browse files
committed
fix: remove Node.js v18 support
Node.js v18 will reach its End-of-Life on 2025-04-30 and as a result will not be supported with the upcoming Angular v20. Node.js Release Schedule: https://github.com/nodejs/release#release-schedule BREAKING CHANGE: Node.js v18 is no longer supported
1 parent 77a6594 commit 69d9d9e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ commands:
1616
at: ~/repo
1717
setup_windows:
1818
steps:
19-
- run: nvm install 18.19.1
20-
- run: nvm use 18.19.1
19+
- run: nvm install 20.11.1
20+
- run: nvm use 20.11.1
2121
- run: npm install -g yarn@1.22.19
2222
- run: node --version
2323
- run: yarn --version
@@ -27,7 +27,7 @@ commands:
2727
executors:
2828
linux-executor:
2929
docker:
30-
- image: cimg/node:18.19
30+
- image: cimg/node:20.11
3131
working_directory: ~/repo
3232

3333
jobs:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"scss"
1515
],
1616
"engines": {
17-
"node": "^18.19.1 || >=20.11.1"
17+
"node": "^20.11.1 || >=22.0.0"
1818
},
1919
"author": "David Herges <david@spektrakel.de>",
2020
"license": "MIT",

0 commit comments

Comments
 (0)
0