Skip to content

Commit

Permalink
Breaking: Drop support for Node.js v6 (refs #138) (#137)
Browse files Browse the repository at this point in the history
The new processor API first shipped in ESLint v6, which requires at
least Node.js v8.10.0.

Since Node.js v8 left LTS maintenance two months ago, I considered
dropping support for it as well and aligning with the supported engines
in ESLint v7, but I don't see a compelling reason not to support ESLint
v6.
  • Loading branch information
btmills committed Feb 28, 2020
1 parent 6f02ef5 commit 35f9a11
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [6.x, 8.x, 9.x, 10.x, 12.x]
node-version: ["8.10.0", 8.x, 10.x, 12.x, 13.x]
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,10 +1,10 @@
language: node_js
node_js:
- "6"
- "8.10.0"
- "8"
- "9"
- "10"
- "12"
- "13"
sudo: false
notifications:
email: false
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -50,6 +50,6 @@
"unified": "^6.1.2"
},
"engines": {
"node": "^6.14.0 || ^8.10.0 || >=9.10.0"
"node": "^8.10.0 || ^10.12.0 || >= 12.0.0"
}
}

0 comments on commit 35f9a11

Please sign in to comment.