Skip to content

Commit

Permalink
fix(travis): fix build runner script
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Jun 18, 2018
1 parent fa773b8 commit 33a6f95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ before_install:
install:
- npm install
- npm run fetch_libdefs
- npm build
- npm run build

script:
- npm run test_with_report
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"lint": "standard-flow src/**/*.js test/**/*.js",
"mocha": "nyc mocha --opts .mocha.opts && nyc report --reporter=text-lcov > ./coverage/lcov.info",
"test": "npm run flow_coverage && npm run lint && npm run mocha",
"build": "babel src --out-dir dist",
"build": "rm -rf ./dist; babel src --out-dir dist",
"test_with_report": "npm test && npm run codeclimate_push && npm run coveralls_push",
"codeclimate_push": "codeclimate-test-reporter < ./coverage/lcov.info",
"coveralls_push": "cat ./coverage/lcov.info | coveralls"
Expand Down

0 comments on commit 33a6f95

Please sign in to comment.