Skip to content

Commit

Permalink
feat(node-versions): raised the minimum required node version to v18.…
Browse files Browse the repository at this point in the history
…17 and dropped v19 support

npm v20 requires v18.17

BREAKING CHANGE: node v18.17 is now the minimum supported node version and support for v19 has been dropped
  • Loading branch information
travi committed Sep 15, 2023
1 parent 03a687b commit b9f294d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -20,8 +20,9 @@ jobs:
strategy:
matrix:
node-version:
- 18.0.0
- 19
- 18.17.0
- 20.0.0
- 20

runs-on: ubuntu-latest
timeout-minutes: 10
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
v18
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -75,7 +75,7 @@
"testdouble": "3.18.0"
},
"engines": {
"node": ">=18"
"node": "^18.17 || >=20"
},
"exports": "./index.js",
"files": [
Expand Down

0 comments on commit b9f294d

Please sign in to comment.