Skip to content

Commit 4c0be5e

Browse files
committedAug 15, 2023
fix: drop node 16.13.x support
BREAKING CHANGE: support for node <=16.13 has been removed
1 parent 17a95eb commit 4c0be5e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
 

‎.github/workflows/ci-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
os: windows-latest
118118
shell: cmd
119119
node-version:
120-
- 16.13.0
120+
- 16.14.0
121121
- 16.x
122122
- 18.0.0
123123
- 18.x

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
os: windows-latest
6060
shell: cmd
6161
node-version:
62-
- 16.13.0
62+
- 16.14.0
6363
- 16.x
6464
- 18.0.0
6565
- 18.x

‎package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,17 @@
5757
]
5858
},
5959
"engines": {
60-
"node": "^16.13.0 || >=18.0.0"
60+
"node": "^16.14.0 || >=18.0.0"
6161
},
6262
"templateOSS": {
6363
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
64+
"version": "4.18.0",
65+
"publish": "true",
6466
"ciVersions": [
65-
"16.13.0",
67+
"16.14.0",
6668
"16.x",
6769
"18.0.0",
6870
"18.x"
69-
],
70-
"version": "4.18.0",
71-
"publish": "true"
71+
]
7272
}
7373
}

0 commit comments

Comments
 (0)
Please sign in to comment.