Skip to content

Commit e80fcab

Browse files
committed
feat: drop Node 10 support (#8)
BREAKING CHANGE: Requires Node@^12.22.0 || ^14.17.0 || >=16.0.0
1 parent 1ec4c4e commit e80fcab

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/CI.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
matrix:
4747
eslint: [7]
48-
node: [10, 12.0.0, 12, 14.0.0, 14, 16, 18] # 10.0.0 is missing
48+
node: [12.22.0, 12, 14.17.0, 14, 16, 18]
4949
os: [ubuntu-latest]
5050
include:
5151
# On other platforms
@@ -64,7 +64,7 @@ jobs:
6464
# os: ubuntu-latest
6565
# On the minimum supported ESLint/Node.js version
6666
# - eslint: 5.0.0
67-
# node: 10.0.0
67+
# node: 12.22.0
6868
# os: ubuntu-latest
6969
runs-on: ${{ matrix.os }}
7070
steps:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0-semantically-released",
44
"description": "Utilities for ESLint plugins.",
55
"engines": {
6-
"node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
6+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
77
},
88
"sideEffects": false,
99
"main": "index",

0 commit comments

Comments
 (0)