Skip to content

Commit 20ff432

Browse files
committed
feat: update node engines in package.json
BREAKING CHANGE: `npm` is now compatible with the following semver range for node: `^14.17.0 || ^16.0.0 || >=18.0.0` Ref: npm/statusboard#519
1 parent eb1998a commit 20ff432

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ jobs:
6666
fail-fast: false
6767
matrix:
6868
node-version:
69-
- 12.13.0
70-
- 12.x
71-
- 14.15.0
69+
- 14.17.0
7270
- 14.x
7371
- 16.0.0
7472
- 16.x
73+
- 18.0.0
74+
- 18.x
7575
platform:
7676
- os: ubuntu-latest
7777
shell: bash

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ jobs:
7777
fail-fast: false
7878
matrix:
7979
node-version:
80-
- 12.13.0
81-
- 12.x
82-
- 14.15.0
80+
- 14.17.0
8381
- 14.x
8482
- 16.0.0
8583
- 16.x
84+
- 18.0.0
85+
- 18.x
8686
platform:
8787
- os: ubuntu-latest
8888
shell: bash

package-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
"tap": "^16.0.1"
179179
},
180180
"engines": {
181-
"node": "^12.13.0 || ^14.15.0 || >=16"
181+
"node": "^14.17.0 || ^16.0.0 || >=18.0.0"
182182
}
183183
},
184184
"docs": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,6 @@
256256
},
257257
"license": "Artistic-2.0",
258258
"engines": {
259-
"node": "^12.13.0 || ^14.15.0 || >=16"
259+
"node": "^14.17.0 || ^16.0.0 || >=18.0.0"
260260
}
261261
}

0 commit comments

Comments
 (0)