Skip to content

Commit

Permalink
feat: drop Node 8 support
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Requires Node@^10.12.0 || >=12.0.0
  • Loading branch information
MichaelDeBoey committed Nov 30, 2021
1 parent cdabf43 commit a7926a8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [ubuntu-latest]
eslint: [6]
node: [8, 10, 12, 14, 16]
node: [10, 12, 14, 16]
include:
# On other platforms
- os: windows-latest
Expand All @@ -23,7 +23,7 @@ jobs:
node: 16
# On the minimum supported ESLint/Node.js version
- eslint: 6.6.0
node: 8.10.0
node: 10.12.0

runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ npm install --save-dev eslint @mysticatea/eslint-plugin

### Requirements

- Node.js `^8.10.0` or newer versions.
- ESLint `^6.3.0` or newer versions.
- Node.js `^10.12.0 || >=12.0.0` or newer versions.
- ESLint `^6.6.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 @@ -3,7 +3,7 @@
"version": "13.0.0",
"description": "Additional ESLint rules.",
"engines": {
"node": ">=8.10.0"
"node": "^10.12.0 || >=12.0.0"
},
"main": "index.js",
"files": [
Expand Down

0 comments on commit a7926a8

Please sign in to comment.