Skip to content

Commit

Permalink
- Breaking change: Bump engines to avoid Node 6 (even Node 8 has be…
Browse files Browse the repository at this point in the history
…en end-of-lifed and can't be tested in current nyc) and avoid supporting ESLint 2

Also avoids checking Node 6 (with ESLint 2)
  • Loading branch information
brettz9 committed Jul 23, 2020
1 parent 1d45f3e commit dc8f968
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
11 changes: 3 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,11 @@ jobs:

- &test
stage: test
node_js: 6
env: ESLINT_VERSION=2

install:
- yarn install --ignore-engines
- yarn add eslint@$ESLINT_VERSION

- <<: *test
node_js: 8
env: ESLINT_VERSION=3
install:
# - yarn install --ignore-engines
- yarn add eslint@$ESLINT_VERSION

- <<: *test
node_js: 10
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"unit-test": "nyc mocha tests/**/*.js"
},
"peerDependencies": {
"eslint": ">=2.0.0 <= 7.x"
"eslint": ">=3.0.0 <= 7.x"
},
"dependencies": {},
"devDependencies": {
Expand All @@ -43,7 +43,7 @@
"nyc": "^15.1.0"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
"node": "^8.9.0 || >= 10.*"
},
"greenkeeper": {
"ignore": [
Expand Down

0 comments on commit dc8f968

Please sign in to comment.