Skip to content

Commit

Permalink
fix(travis, coveralls): fix of coverage script
Browse files Browse the repository at this point in the history
  • Loading branch information
ZorbaDimatteo committed Apr 11, 2017
1 parent f4406b4 commit db66c5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ before_script:
- npm prune
script:
- npm run build
- npm t
- npm run coverage
after_success:
- npm run docs
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"commit": "git-cz",
"test:watch": "mocha -r ts-node/register **/*.spec.ts --watch-extensions ts --watch",
"test": "nyc -e .ts -x **/*.spec.ts mocha -r ts-node/register **/*.spec.ts",
"coverage": "nyc -e .ts -x **/*.spec.ts mocha -r ts-node/register **/*.spec.ts nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "typedoc --out ./docs ./src --exclude ./test",
"build": "rimraf dist && tsc --project tsconfig.prod.json && webpack",
"build-dev": "rimraf dist && tsc --project tsconfig.dev.json",
Expand Down

0 comments on commit db66c5a

Please sign in to comment.