Skip to content

Commit

Permalink
chore(scripts): fix pretest
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvdutt committed Jul 4, 2018
1 parent d730841 commit 55efce6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
"format": "prettier-eslint ./bin/*.js ./test/**/*.js ./packages/**/*.js --write",
"jsdoc": "jsdoc -c jsdoc.json -r -d docs",
"lint:codeOnly": "eslint \"{bin}/**/!(__testfixtures__)/*.js\" \"{bin}/**.js\"",
"lint": "eslint \"./bin/*.js\" \"./test/**/*.js\" \"{packages}/**/!(node_modules)/*.test.js\"",
"lint": "eslint \"./bin/*.js\" \"./test/**/*.js\" \"packages/**/!(node_modules)/*.test.js\"",
"precommit": "lint-staged",
"pretest": "npm run lint && npm run build && npm run tslint",
"pretest": "npm run build && npm run lint && npm run tslint",
"reportCoverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json --disable=gcov",
"test": "nyc jest",
"travis:integration": "npm run test && npm run reportCoverage",
Expand Down

0 comments on commit 55efce6

Please sign in to comment.