Skip to content

Commit df5e580

Browse files
authored
feat: drop support for Node v14 (#1527)
BREAKING CHANGE: dropped support for Node v14
1 parent 732c71b commit df5e580

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/nodejs.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,10 @@ jobs:
7171
strategy:
7272
fail-fast: false
7373
matrix:
74-
node-version: [14.x, 16.x, 18.x, 19.x, 20.x, 21.x]
74+
node-version: [16.x, 18.x, 19.x, 20.x, 21.x]
7575
eslint-version: [7, 8]
7676
ts-eslint-plugin-version: [5, 6, 7]
7777
exclude:
78-
# ts-eslint/plugin@6 doesn't support node@14
79-
- node-version: 14.x
80-
ts-eslint-plugin-version: 6
81-
# ts-eslint/plugin@7 doesn't support node@14
82-
- node-version: 14.x
83-
ts-eslint-plugin-version: 7
8478
# ts-eslint/plugin@7 doesn't support node@16
8579
- node-version: 16.x
8680
ts-eslint-plugin-version: 7

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
},
157157
"packageManager": "[email protected]",
158158
"engines": {
159-
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
159+
"node": "^16.10.0 || >=18.0.0"
160160
},
161161
"publishConfig": {
162162
"provenance": true

0 commit comments

Comments
 (0)