Skip to content

Commit 3059b28

Browse files
authored
fix: drop node14 support (#259)
BREAKING CHANGE: support for node 14 has been removed
1 parent 096e2b8 commit 3059b28

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/ci-release.yml

-2
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,6 @@ jobs:
117117
os: windows-latest
118118
shell: cmd
119119
node-version:
120-
- 14.17.0
121-
- 14.x
122120
- 16.13.0
123121
- 16.x
124122
- 18.0.0

.github/workflows/ci.yml

-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ jobs:
5959
os: windows-latest
6060
shell: cmd
6161
node-version:
62-
- 14.17.0
63-
- 14.x
6462
- 16.13.0
6563
- 16.x
6664
- 18.0.0

package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"tap": "^16.0.0"
5555
},
5656
"engines": {
57-
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
57+
"node": "^16.13.0 || >=18.0.0"
5858
},
5959
"tap": {
6060
"color": 1,
@@ -68,6 +68,12 @@
6868
},
6969
"templateOSS": {
7070
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
71+
"ciVersions": [
72+
"16.13.0",
73+
"16.x",
74+
"18.0.0",
75+
"18.x"
76+
],
7177
"version": "4.18.0",
7278
"publish": "true"
7379
}

0 commit comments

Comments
 (0)