Skip to content

Commit

Permalink
feat: drop Node 10 support (#8)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Requires Node@^12.22.0 || ^14.17.0 || >=16.0.0
  • Loading branch information
MichaelDeBoey committed Nov 22, 2022
1 parent 1ec4c4e commit e80fcab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
matrix:
eslint: [7]
node: [10, 12.0.0, 12, 14.0.0, 14, 16, 18] # 10.0.0 is missing
node: [12.22.0, 12, 14.17.0, 14, 16, 18]
os: [ubuntu-latest]
include:
# On other platforms
Expand All @@ -64,7 +64,7 @@ jobs:
# os: ubuntu-latest
# On the minimum supported ESLint/Node.js version
# - eslint: 5.0.0
# node: 10.0.0
# node: 12.22.0
# os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
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": "0.0.0-semantically-released",
"description": "Utilities for ESLint plugins.",
"engines": {
"node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"sideEffects": false,
"main": "index",
Expand Down

0 comments on commit e80fcab

Please sign in to comment.