Skip to content

Commit 285c99f

Browse files
feat: drop Node 12, 14 & 16 support (#204)
BREAKING CHANGE: Requires Node@^18.18.0 || ^20.9.0 || >=21.1.0
1 parent 3ee07fc commit 285c99f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
fail-fast: false
5252
matrix:
5353
eslint: [8]
54-
node: [12.22.0, 12, 14.17.0, 14, 16, 18, 19, 20]
54+
node: [18.18.0, 18, 20.9.0, 20]
5555
os: [ubuntu-latest]
5656
include:
5757
# On other platforms
@@ -70,7 +70,7 @@ jobs:
7070
os: ubuntu-latest
7171
# On the minimum supported ESLint/Node.js version
7272
- eslint: 6.6.0
73-
node: 12.22.0
73+
node: 18.18.0
7474
os: ubuntu-latest
7575
runs-on: ${{ matrix.os }}
7676
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ npm install --save-dev eslint @eslint-community/eslint-plugin-mysticatea
1616

1717
### Requirements
1818

19-
- Node.js `^12.22.0 || ^14.17.0 || >=16.0.0` or newer versions.
19+
- Node.js `^18.18.0 || ^20.9.0 || >=21.1.0`
2020
- ESLint `^6.6.0 || ^7.0.0 || ^8.0.0` or newer versions.
2121

2222
## 📖 Usage

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"eslint": "^6.6.0 || ^7.0.0 || ^8.0.0"
7171
},
7272
"engines": {
73-
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
73+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
7474
},
7575
"funding": "https://opencollective.com/eslint"
7676
}

0 commit comments

Comments
 (0)