Skip to content

Commit

Permalink
fix: drop support for Node 19 (#1548)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node v19 is no longer supported
  • Loading branch information
SimenB committed Apr 6, 2024
1 parent 3c5e167 commit c87e388
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 19.x, 20.x, 21.x]
node-version: [16.x, 18.x, 20.x, 21.x]
eslint-version: [7, 8, 9]
ts-eslint-plugin-version: [6, 7]
exclude:
Expand All @@ -81,9 +81,6 @@ jobs:
# eslint@9 doesn't support node@16
- node-version: 16.x
eslint-version: 9
# ts-eslint/plugin@7 doesn't support node@19
- node-version: 19.x
ts-eslint-plugin-version: 7
# ts-eslint/plugin@7 doesn't support eslint@7
- eslint-version: 7
ts-eslint-plugin-version: 7
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
},
"packageManager": "yarn@3.8.1",
"engines": {
"node": "^16.10.0 || >=18.0.0"
"node": "^16.10.0 || ^18.12.0 || >=20.0.0"
},
"publishConfig": {
"provenance": true
Expand Down

0 comments on commit c87e388

Please sign in to comment.