Skip to content
This repository was archived by the owner on Jun 17, 2021. It is now read-only.

Commit c0afc72

Browse files
committed
Removed Node 4, added Node 10 version in Travis CI config, additional linit check on test run
1 parent a46771d commit c0afc72

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: node_js
22
node_js:
3-
- "4"
43
- "6"
54
- "8"
5+
- "10"
66
env:
77
- CXX=g++-4.8
88
addons:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"coverage": "npm run build:dist && istanbul cover _mocha",
1111
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
1212
"lint": "standard",
13-
"prepublishOnly": "npm run lint && npm run build:dist && npm run test",
14-
"test": "npm run test:node && npm run test:browser",
13+
"prepublishOnly": "npm run test && npm run build:dist",
14+
"test": "npm run lint && npm run test:node && npm run test:browser",
1515
"test:browser": "npm run build:dist && karma start karma.conf.js",
1616
"test:node": "npm run build:dist && istanbul test mocha -- --reporter spec",
1717
"build:dist": "babel index.js --source-root ./ -d ./dist",

0 commit comments

Comments
 (0)