Skip to content

Commit c95b2fd

Browse files
committedMay 1, 2019
💥 drop support for Node.js 6.x
1 parent 62212ac commit c95b2fd

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed
 

‎.travis.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,16 @@ os:
77

88
language: node_js
99
node_js:
10-
- "6.0.0"
11-
- "6"
12-
- "8"
10+
- "8.10.0"
1311
- "10"
14-
- "11"
12+
- "12"
1513

1614
env:
1715
- ESLINT_VERSION=4
1816
- ESLINT_VERSION=5
1917

2018
matrix:
2119
exclude:
22-
# ESLint 5 supports Node.js 6.14.0 and up.
23-
- node_js: "6.0.0"
24-
env: ESLINT_VERSION=5
2520
# Reduce build jobs.
2621
- os: osx
2722
env: ESLINT_VERSION=4

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Additional ESLint's rules for Node.js
1414
$ npm install --save-dev eslint eslint-plugin-node
1515
```
1616

17-
- Requires Node.js `>=6.0.0`
17+
- Requires Node.js `>=8.10.0`
1818
- Requires ESLint `>=4.19.1` (`plugin:node/recommended` preset requires `>=5.0.0`)
1919

2020
**Note:** It recommends a use of [the "engines" field of package.json](https://docs.npmjs.com/files/package.json#engines). The "engines" field is used by `node/no-unsupported-features/*` rules.
@@ -42,7 +42,7 @@ $ npm install --save-dev eslint eslint-plugin-node
4242
"name": "your-module",
4343
"version": "1.0.0",
4444
"engines": {
45-
"node": ">=6.0.0"
45+
"node": ">=8.10.0"
4646
}
4747
}
4848
```

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "8.0.1",
44
"description": "Additional ESLint's rules for Node.js",
55
"engines": {
6-
"node": ">=6"
6+
"node": ">=8.10.0"
77
},
88
"main": "lib/index.js",
99
"files": [

0 commit comments

Comments
 (0)
Please sign in to comment.