We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b23bddc commit 8786651Copy full SHA for 8786651
.travis.yml
@@ -1,5 +1,6 @@
1
language: node_js
2
node_js:
3
- - 8.9.4
+ - 10.15.0
4
script:
5
- - "eslint . --max-warnings 0"
+ - npm run lint
6
+ - npm test
package.json
@@ -28,9 +28,10 @@
28
"dist/vast-client.min.js": "dist/vast-client.min.js"
29
},
30
"scripts": {
31
- "test": "mocha --compilers js:babel-core/register --reporter spec test/*.js",
32
"build": "rollup -c",
33
- "precommit": "eslint . --max-warnings 0 && pretty-quick --staged"
+ "lint": "eslint .",
+ "precommit": "eslint . --max-warnings 0 && pretty-quick --staged",
34
+ "test": "mocha --compilers js:babel-core/register --reporter spec test/*.js"
35
36
"devDependencies": {
37
"babel-core": "^6.26.0",
0 commit comments