Skip to content

Commit

Permalink
style(deployment): Remove unneccessary build tasks.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryardley committed Aug 24, 2016
1 parent 05be1f5 commit 262394e
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,14 @@
"scripts": {
"build": "gulp compile",
"dev": "gulp watch",
"test-and-compile": "npm run build && npm test",
"update-changelog": "changelog -m https://github.com/ryardley/indexr.git | cat - CHANGELOG.md > temp && mv temp CHANGELOG.md",
"publish-patch": "npm run test-and-compile && npm version patch && git push --tags && npm publish",
"publish-minor": "npm run test-and-compile && npm version minor && git push --tags && npm publish",
"publish-major": "npm run test-and-compile && npm version major && git push --tags && npm publish",
"docs": "doctoc README.md --title '##Contents'",
"test": "npm run build && npm run test-once",
"pretest-watch": "gulp compile",
"report-coverage": "npm run build && nyc --require babel-core/register npm run test-once && nyc report --reporter=lcov > coverage.lcov && codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run build && npm run test-once",
"test-and-compile": "npm run build && npm test",
"test-once": "mocha --compilers js:babel-register test --ignore **/fixtures --require babel-polyfill",
"pretest-watch": "gulp compile",
"test-watch": "mocha --watch --compilers js:babel-register test --ignore **/fixtures --require babel-polyfill",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
"test-watch": "mocha --watch --compilers js:babel-register test --ignore **/fixtures --require babel-polyfill"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 262394e

Please sign in to comment.