Skip to content

Commit

Permalink
BREAKING CHANGE: Require Node 8+ (and upgrade yargs)
Browse files Browse the repository at this point in the history
Node 6 reached end of life earlier this year: https://nodejs.org/en/about/releases/

Closes Javascipt#20
  • Loading branch information
paulmelnikow committed Jul 7, 2019
1 parent c2e8fb4 commit 4ceef32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '7'
- '8'
- '9'
- '10'
- '12'
before_script: npm link
script: jsome package.json && cat package.json | jsome && npm test
script: jsome package.json && cat package.json | jsome && npm test
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"dependencies": {
"chalk": "^2.3.0",
"json-stringify-safe": "^5.0.1",
"yargs": "^11.0.0"
"yargs": "^13.2.4"
},
"bin": {
"jsome": "./bin/cli.js"
Expand All @@ -40,6 +40,9 @@
"jest": "^21.2.1",
"jsesc": "^2.5.1"
},
"engines": {
"node": ">= 8"
},
"jest": {
"testEnvironment": "node"
}
Expand Down

0 comments on commit 4ceef32

Please sign in to comment.