Skip to content

Commit

Permalink
Bump dependencies to latest versions available; expand travis testing
Browse files Browse the repository at this point in the history
Because of the bump in mocha version to 8.0, we can no longer run tests
on Node.js v8.x and below: mochajs/mocha#4164

The fibers package at version 5.0 also doesn't support Node.js v10.x
or lower, although it seems to work fine in my limited testing.

The commander package requires node 6 or greater:
tj/commander.js#1053
  • Loading branch information
cscott committed Jul 31, 2020
1 parent 88f4898 commit 682bcf1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Expand Up @@ -2,8 +2,5 @@ language: node_js
sudo: false
node_js:
- "stable"
- "8"
- "6"
- "4"
- "0.12"
- "0.10"
- "14"
- "12"
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -22,11 +22,11 @@
"test": "test"
},
"dependencies": {
"commander": "^2.8.1"
"commander": "^6.0.0"
},
"devDependencies": {
"fibers": "~1.0.6",
"mocha": "~2.2.5"
"fibers": "^5.0.0",
"mocha": "^8.1.0"
},
"scripts": {
"test": "mocha"
Expand Down

0 comments on commit 682bcf1

Please sign in to comment.