Skip to content

Commit

Permalink
feat: drop support for Node v14 (#1527)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: dropped support for Node v14
  • Loading branch information
G-Rath committed Mar 21, 2024
1 parent 732c71b commit df5e580
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/nodejs.yml
Expand Up @@ -71,16 +71,10 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x, 19.x, 20.x, 21.x]
node-version: [16.x, 18.x, 19.x, 20.x, 21.x]
eslint-version: [7, 8]
ts-eslint-plugin-version: [5, 6, 7]
exclude:
# ts-eslint/plugin@6 doesn't support node@14
- node-version: 14.x
ts-eslint-plugin-version: 6
# ts-eslint/plugin@7 doesn't support node@14
- node-version: 14.x
ts-eslint-plugin-version: 7
# ts-eslint/plugin@7 doesn't support node@16
- node-version: 16.x
ts-eslint-plugin-version: 7
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -156,7 +156,7 @@
},
"packageManager": "yarn@3.8.1",
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
"node": "^16.10.0 || >=18.0.0"
},
"publishConfig": {
"provenance": true
Expand Down

0 comments on commit df5e580

Please sign in to comment.