Skip to content

Commit c695672

Browse files
committed
Run tests on node 10. Drop support for node 4.0
1 parent 2eccaad commit c695672

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.babelrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"presets": [["env", {
33
"modules": false,
44
"targets": {
5-
"node": 4,
5+
"node": 6,
66
"browsers": [
77
"ie 9",
88
"ios 9",

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
language: node_js
22

3-
# https://github.com/nodejs/LTS
3+
# https://github.com/nodejs/Release
44
node_js:
5+
- '10'
56
- '9'
67
- '8'
78
- '6'
8-
- '4'
99

1010
git:
1111
depth: 5

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
"options": {
1818
"mocha": "--check-leaks --full-trace --timeout 15000 src/**/__tests__/**/*-test.js"
1919
},
20+
"engines": {
21+
"node": "6.x || 8.x || >= 9.x"
22+
},
2023
"scripts": {
2124
"watch": "babel-node ./resources/watch.js",
2225
"test": "npm run lint && npm run check && npm run testonly",

0 commit comments

Comments
 (0)