Skip to content

Commit c87e388

Browse files
authored
fix: drop support for Node 19 (#1548)
BREAKING CHANGE: Node v19 is no longer supported
1 parent 3c5e167 commit c87e388

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/nodejs.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
strategy:
7272
fail-fast: false
7373
matrix:
74-
node-version: [16.x, 18.x, 19.x, 20.x, 21.x]
74+
node-version: [16.x, 18.x, 20.x, 21.x]
7575
eslint-version: [7, 8, 9]
7676
ts-eslint-plugin-version: [6, 7]
7777
exclude:
@@ -81,9 +81,6 @@ jobs:
8181
# eslint@9 doesn't support node@16
8282
- node-version: 16.x
8383
eslint-version: 9
84-
# ts-eslint/plugin@7 doesn't support node@19
85-
- node-version: 19.x
86-
ts-eslint-plugin-version: 7
8784
# ts-eslint/plugin@7 doesn't support eslint@7
8885
- eslint-version: 7
8986
ts-eslint-plugin-version: 7

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
},
127127
"packageManager": "[email protected]",
128128
"engines": {
129-
"node": "^16.10.0 || >=18.0.0"
129+
"node": "^16.10.0 || ^18.12.0 || >=20.0.0"
130130
},
131131
"publishConfig": {
132132
"provenance": true

0 commit comments

Comments
 (0)