Skip to content

Commit

Permalink
Add release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
chasenlehara committed Apr 8, 2019
1 parent 258afab commit 5c369e7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions package.json
Expand Up @@ -93,6 +93,12 @@
"jshint": "jshint lib/**/*.js Gruntfile.js --config",
"coverage": "istanbul cover _mocha -- test/test --timeout 600000",
"coverage:upload": "istanbul cover _mocha --report lcovonly -- test/test --timeout 600000 && cat ./coverage/lcov.info | ./node_modules/coveralls-send/bin/coveralls.js",
"preversion": "npm test",
"postpublish": "git push --tags && git push",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"test:slim-worker-single": "node test/slim/worker/single/build.js && testee test/slim/worker/single/worker.html --browsers firefox --reporter Spec",
"test:slim-worker-progressive": "node test/slim/worker/progressive/build.js && testee test/slim/worker/progressive/worker.html --browsers firefox --reporter Spec",
"test:slim-worker-shared": "node test/slim/shared_bundles/build.js && testee test/slim/shared_bundles/worker.html --browsers firefox --reporter Spec",
Expand Down

0 comments on commit 5c369e7

Please sign in to comment.