Skip to content

Commit

Permalink
build(node): drop support for node.js < 6
Browse files Browse the repository at this point in the history
BREAKING CHANGE:

Drop support for node.js < 6
  • Loading branch information
evansiroky committed Nov 19, 2018
1 parent 1c0a5b6 commit d9c10cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@ sudo: false
language: node_js

node_js:
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"

env:
- COVERAGE=false

matrix:
fast_finish: true
include:
- node_js: "4"
- node_js: "6"
env: COVERAGE=true
script: "npm run codeclimate"
allow_failures:
- node_js: "4"
- node_js: "6"
env: COVERAGE=true
script: "npm run codeclimate"

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"homepage": "https://github.com/evansiroky/node-geo-tz#readme",
"engines": {
"node": ">=4"
"node": ">=6"
},
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit d9c10cc

Please sign in to comment.