Skip to content

Commit

Permalink
- remove redundant build script
Browse files Browse the repository at this point in the history
- report coverage to coveralls.io
  • Loading branch information
maciejzasada committed Apr 23, 2017
1 parent 56ca783 commit 75231ea
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
language: node_js
node_js:
- "7"
before_script:
- npm run compile
script:
- npm run lint
- npm test
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"test": "npm run compile && babel-node --plugins transform-es2015-arrow-functions node_modules/.bin/tape test/*.js",
"compile": "babel --out-dir dist lib/**.js",
"lint": "eslint lib",
"cover": "npm run compile && babel-node --plugins transform-es2015-arrow-functions node_modules/.bin/istanbul cover node_modules/.bin/tape -- test/*.js",
"cover": "npm run compile && babel-node --plugins transform-es2015-arrow-functions node_modules/.bin/istanbul cover node_modules/.bin/tape -- test/*.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"example:cli": "npm run compile && babel-node --plugins transform-es2015-arrow-functions node_modules/.bin/tape examples/cli"
},
"main": "./dist/lib"
Expand Down

0 comments on commit 75231ea

Please sign in to comment.