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

Commit 2845aa5

Browse files
committed
fix: drop node14 support
BREAKING CHANGE: support for node 14 has been removed
1 parent beb1b31 commit 2845aa5

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/ci-release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,7 @@ jobs:
117117
os: windows-latest
118118
shell: cmd
119119
node-version:
120-
- 14.17.0
121-
- 14.x
122-
- 16.13.0
120+
- 16.14.0
123121
- 16.x
124122
- 18.0.0
125123
- 18.x

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,7 @@ jobs:
5959
os: windows-latest
6060
shell: cmd
6161
node-version:
62-
- 14.17.0
63-
- 14.x
64-
- 16.13.0
62+
- 16.14.0
6563
- 16.x
6664
- 18.0.0
6765
- 18.x

package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"lib/"
4040
],
4141
"engines": {
42-
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
42+
"node": "^16.14.0 || >=18.0.0"
4343
},
4444
"tap": {
4545
"branches": 73,
@@ -54,6 +54,12 @@
5454
"templateOSS": {
5555
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
5656
"version": "4.18.0",
57-
"publish": "true"
57+
"publish": "true",
58+
"ciVersions": [
59+
"16.14.0",
60+
"16.x",
61+
"18.0.0",
62+
"18.x"
63+
]
5864
}
5965
}

0 commit comments

Comments
 (0)