Skip to content

Commit

Permalink
Drop support for Node 4
Browse files Browse the repository at this point in the history
  • Loading branch information
wyze committed Mar 13, 2018
1 parent e4df814 commit 18ec073
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ sudo: false
language: node_js

node_js:
- 7
- 9
- 8
- 6
- 4

before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"

cache:
yarn: true
directories:
- $HOME/.cache

before_install:
# Ensure npm 4 on Node 4
- '[ "${TRAVIS_NODE_VERSION}" != 4 ] || npm install -g npm@4'
- node_modules
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"eslint-plugin"
],
"engines": {
"node": ">=4"
"node": ">=6"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
Expand Down

0 comments on commit 18ec073

Please sign in to comment.