Skip to content

Commit 6345d76

Browse files
committed
fix: drop node14 support
BREAKING CHANGE: support for node 14 has been removed
1 parent 6b53219 commit 6345d76

3 files changed

Lines changed: 10 additions & 8 deletions

File tree

.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
@@ -44,12 +44,18 @@
4444
"url": "https://github.com/npm/package-json.git"
4545
},
4646
"engines": {
47-
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
47+
"node": "^16.14.0 || >=18.0.0"
4848
},
4949
"templateOSS": {
5050
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
5151
"version": "4.18.0",
52-
"publish": "true"
52+
"publish": "true",
53+
"ciVersions": [
54+
"16.14.0",
55+
"16.x",
56+
"18.0.0",
57+
"18.x"
58+
]
5359
},
5460
"tap": {
5561
"nyc-arg": [

0 commit comments

Comments
 (0)