Skip to content

Commit 7ac06ac

Browse files
committedDec 6, 2021
feat: drop Node 10 support
BREAKING CHANGE: Requires Node@^12.22.0 || ^14.17.0 || >=16.0.0
1 parent 364b664 commit 7ac06ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
eslint: [7]
10-
node: [10.12, 10, 12.0, 12, 14, 16]
10+
node: [12.22.0, 12, 14.17.0, 14, 16]
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: 🛑 Cancel Previous Runs

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"eslint": "^7.0.0"
4242
},
4343
"engines": {
44-
"node": "^10.12.0 || >=12.0.0"
44+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4545
},
4646
"license": "ISC",
4747
"lint-staged": {

0 commit comments

Comments
 (0)
Please sign in to comment.