Skip to content

Commit

Permalink
Breaking: drop supporting Node.js 4 (fixes #10052) (#10074)
Browse files Browse the repository at this point in the history
Change requirement to `^6.14.0 || ^8.10.0 || >=9.10.0`
  • Loading branch information
aladdin-add authored and not-an-aardvark committed Apr 13, 2018
1 parent cd34d44 commit b77846d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
sudo: false
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ESLint is a tool for identifying and reporting on patterns found in ECMAScript/J

## Installation and Usage

Prerequisites: [Node.js](https://nodejs.org/en/) (>=4.x), npm version 2+.
Prerequisites: [Node.js](https://nodejs.org/en/) (>=6.14), npm version 3+.

There are two ways to install ESLint: globally and locally.

Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ESLint is a tool for identifying and reporting on patterns found in ECMAScript/J

## Installation and Usage

Prerequisites: [Node.js](https://nodejs.org/en/) (>=4.x), npm version 2+.
Prerequisites: [Node.js](https://nodejs.org/en/) (>=6.14), npm version 3+.

There are two ways to install ESLint: globally and locally.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,6 @@
],
"license": "MIT",
"engines": {
"node": ">=4"
"node": "^6.14.0 || ^8.10.0 || >=9.10.0"
}
}

0 comments on commit b77846d

Please sign in to comment.