Skip to content

Commit

Permalink
feat: drop Node 12, 14 & 16 support (#204)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Requires Node@^18.18.0 || ^20.9.0 || >=21.1.0
  • Loading branch information
MichaelDeBoey authored Oct 26, 2024
1 parent 3ee07fc commit 285c99f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
fail-fast: false
matrix:
eslint: [8]
node: [12.22.0, 12, 14.17.0, 14, 16, 18, 19, 20]
node: [18.18.0, 18, 20.9.0, 20]
os: [ubuntu-latest]
include:
# On other platforms
Expand All @@ -70,7 +70,7 @@ jobs:
os: ubuntu-latest
# On the minimum supported ESLint/Node.js version
- eslint: 6.6.0
node: 12.22.0
node: 18.18.0
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ npm install --save-dev eslint @eslint-community/eslint-plugin-mysticatea

### Requirements

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

## 📖 Usage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"eslint": "^6.6.0 || ^7.0.0 || ^8.0.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": "https://opencollective.com/eslint"
}

0 comments on commit 285c99f

Please sign in to comment.