Skip to content

Commit

Permalink
Merge pull request #134 from staltz/patch-1
Browse files Browse the repository at this point in the history
Fixed and improved release scripts in package.json
  • Loading branch information
Matt-Esch committed Dec 7, 2014
2 parents 6cf7e5b + 9312f42 commit 685d082
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
"phantom": "run-browser test/index.js -b | tap-spec",
"dist": "browserify --standalone virtual-dom index.js > dist/virtual-dom.js",
"travis-test": "npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)",
"release": "git checkout master && npm version patch && git push origin master --tags && npm publish",
"release": "npm run release-patch",
"release-patch": "git checkout master && npm version patch && git push origin master --tags && npm publish",
"release-minor": "git checkout master && npm version major && git push origin master --tags && npm publish",
"release-major": "git checkout master && npm version minor && git push origin master --tags && npm publish"
"release-minor": "git checkout master && npm version minor && git push origin master --tags && npm publish",
"release-major": "git checkout master && npm version major && git push origin master --tags && npm publish"
},
"testling": {
"files": "test/*.js",
Expand Down

0 comments on commit 685d082

Please sign in to comment.