Skip to content

Commit 6413130

Browse files
committedSep 15, 2023
feat(node-versions): raised the minimum required node version to v18.17 and dropped v19 support
BREAKING CHANGE: node v18.17 is now the minimum required version and support for v19 has been dropped
1 parent 819f257 commit 6413130

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed
 

‎.github/workflows/test.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ jobs:
1313
strategy:
1414
matrix:
1515
node-version:
16-
- 18.0.0
17-
- 19
16+
- 18.17.0
17+
- 20.0.0
18+
- 20
1819
os:
1920
- ubuntu-latest
2021
runs-on: "${{ matrix.os }}"

‎.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v18

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"stream-buffers": "3.0.2"
4646
},
4747
"engines": {
48-
"node": ">=18"
48+
"node": "^18.17 || >=20"
4949
},
5050
"files": [
5151
"lib",

0 commit comments

Comments
 (0)
Please sign in to comment.