Skip to content

Commit c98e908

Browse files
committedAug 14, 2023
fix: drop node14 support
BREAKING CHANGE: support for node 14 has been removed
1 parent ecdd7de commit c98e908

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed
 

‎.github/workflows/ci-release.yml

+1-3
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

+1-3
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ jobs:
6060
os: windows-latest
6161
shell: cmd
6262
node-version:
63-
- 14.17.0
64-
- 14.x
65-
- 16.13.0
63+
- 16.14.0
6664
- 16.x
6765
- 18.0.0
6866
- 18.x

‎package.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"lib/"
4343
],
4444
"engines": {
45-
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
45+
"node": "^16.14.0 || >=18.0.0"
4646
},
4747
"tap": {
4848
"color": 1,
@@ -55,6 +55,12 @@
5555
"templateOSS": {
5656
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
5757
"version": "4.18.0",
58-
"publish": "true"
58+
"publish": "true",
59+
"ciVersions": [
60+
"16.14.0",
61+
"16.x",
62+
"18.0.0",
63+
"18.x"
64+
]
5965
}
6066
}

0 commit comments

Comments
 (0)
Please sign in to comment.