Skip to content

Commit

Permalink
chore(ci): drop support for node 4, add support for node 10(#55)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This library will no longer be tested Node,js 4 and as such will not be guaranteed to work on this version of Node.js. This library supports LTS versions of Node.js as they are specified here: https://github.com/nodejs/Release#release-schedule
  • Loading branch information
gurpreetatwal authored Jul 8, 2018
1 parent 7677dc5 commit 8e0963f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ language:
- node_js

node_js:
- 10
- 8
- 6
- 4

cache:
directories:
Expand All @@ -31,5 +31,5 @@ script:
jobs:
include:
- stage: publish
node_js: 8
node_js: 10
script: echo -e "machine github.com\n login $GH_TOKEN" >> ~/.netrc && npm run release
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "nodejs sdk for the smartcar platform",
"main": "index.js",
"author": "Smartcar <[email protected]> (https://smartcar.com)",
"license" : "MIT",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/smartcar/node-sdk.git"
Expand All @@ -22,7 +22,7 @@
"index.js"
],
"engines": {
"node": ">=4.0.0"
"node": ">=6.0.0"
},
"scripts": {
"test": "ava",
Expand Down

0 comments on commit 8e0963f

Please sign in to comment.