Skip to content

Commit 6bf37bb

Browse files
committed
Drop supports Node.js v8, v10, v13 and v15
1 parent ba9c3f8 commit 6bf37bb

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ workflows:
22
version: 2
33
node-multi-build:
44
jobs:
5-
- node-v8
6-
- node-v10
5+
- eslint-v6
76
- node-v12
87
- node-v14
8+
- node-v16
99
- lint
1010

1111
version: 2
@@ -32,9 +32,9 @@ jobs:
3232
name: Test
3333
command: npm test
3434

35-
node-v8:
35+
eslint-v6:
3636
docker:
37-
- image: node:8
37+
- image: node:12
3838
steps:
3939
- run:
4040
name: Versions
@@ -43,17 +43,13 @@ jobs:
4343
- run:
4444
name: Install eslint@6
4545
command: |
46-
npm install --save-exact eslint@6.8.0 @typescript-eslint/parser@3.10.1 typescript@4.0.8
46+
npm install --save-exact eslint@6.8.0
4747
- run:
4848
name: Install dependencies
4949
command: npm install
5050
- run:
5151
name: Test
5252
command: npm test
53-
node-v10:
54-
<<: *node-base
55-
docker:
56-
- image: node:10
5753
node-v12:
5854
<<: *node-base
5955
docker:
@@ -62,6 +58,10 @@ jobs:
6258
<<: *node-base
6359
docker:
6460
- image: node:14
61+
node-v16:
62+
<<: *node-base
63+
docker:
64+
- image: node:16
6565

6666
lint:
6767
docker:

docs/user-guide/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ yarn add -D eslint eslint-plugin-vue
2323
::: tip Requirements
2424

2525
- ESLint v6.2.0 and above
26-
- Node.js v8.10.0 and above
26+
- Node.js v12.22.x, v14.17.x, and v16.x and above
2727

2828
:::
2929

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"url": "https://github.com/vuejs/eslint-plugin-vue/issues"
4848
},
4949
"engines": {
50-
"node": ">=8.10"
50+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
5151
},
5252
"peerDependencies": {
5353
"eslint": "^6.2.0 || ^7.0.0"

0 commit comments

Comments
 (0)