Skip to content

Commit e5e1934

Browse files
committed
1 parent 7d2e719 commit e5e1934

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,12 @@ before_install:
5454
elif [[ "$(v "$TRAVIS_NODE_VERSION")" -lt "$(v '0.10')" ]]; then
5555
# - use 2.x for Node.js < 0.10
5656
npm install --save-dev [email protected]
57-
elif [[ "$(v "$TRAVIS_NODE_VERSION")" -lt "$(v '6.0')" ]]; then
58-
# - use 3.x for Node.js < 6
57+
elif [[ "$(v "$TRAVIS_NODE_VERSION")" -lt "$(v '4.0')" ]]; then
58+
# - use 3.x for Node.js < 4
5959
npm install --save-dev [email protected]
60+
elif [[ "$(v "$TRAVIS_NODE_VERSION")" -lt "$(v '6.0')" ]]; then
61+
# - use 5.x for Node.js < 6
62+
npm install --save-dev [email protected]
6063
fi
6164
# Update Node.js modules
6265
- |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"eslint-plugin-promise": "4.0.1",
2626
"eslint-plugin-standard": "4.0.0",
2727
"istanbul": "0.4.5",
28-
"mocha": "5.2.0"
28+
"mocha": "6.0.2"
2929
},
3030
"engines": {
3131
"node": ">= 0.6"

0 commit comments

Comments
 (0)