Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Commit

Permalink
deps: use tilde instead of caret for npm2 (#273)
Browse files Browse the repository at this point in the history
* deps: use tilde instead of caret for npm2

* Revert "test: Update travis config"

This reverts commit 8360c04.

* travis: remove script and notifications

* travis: use built-in npm

* travis: remove Node.js v0.8.x

PR-URL: #273
Credit: @watilde
Reviewed-By: @iarna
Reviewed-By: @zkat
  • Loading branch information
watilde authored and zkat committed Nov 2, 2017
1 parent 03ca1e5 commit 5e12d6a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
language: "node_js"
node_js:
- "6"
- "5"
- "4"
- "7"
- iojs
- "0.12"
- "0.10"
sudo: false
before_install:
- "npm config set spin false"
- "npm install -g npm"
env:
- DEPLOY_VERSION=testing
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
},
"dependencies": {
"couchapp": "~0.11.0",
"json": "^9.0.2",
"json": "~9.0.2",
"semver": "4"
},
"devDependencies": {
"request": "^2.42.0",
"parse-json-response": "^1.0.1",
"request": "~2.42.0",
"parse-json-response": "~1.0.1",
"rimraf": "~2.2.6",
"tap": "*",
"which": "^1.0.5"
"which": "~1.0.5"
},
"repository": {
"type": "git",
Expand Down

3 comments on commit 5e12d6a

@jbeard4
Copy link

@jbeard4 jbeard4 commented on 5e12d6a Jan 9, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit seems to roll back the change to .travis.yml in 8360c04, which updates node_js versions.

@watilde I was wondering why the node_js versions in the .travis.yml file were changed to remove versions 6 and 7, and why unsupported node versions iojs, 0.12, and 0.10 were added?

Thank you.

@watilde
Copy link
Contributor Author

@watilde watilde commented on 5e12d6a Jan 9, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jbeard4 See the context please: #273.

@jbeard4
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the context.

Please sign in to comment.