Skip to content

Commit

Permalink
fix: release script
Browse files Browse the repository at this point in the history
  • Loading branch information
Idered committed Aug 16, 2017
1 parent f3ed037 commit ff82cab
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 @@ -9,9 +9,9 @@
"dev": "mocha --watch -R min --compilers js:babel-register tests",
"test": "xo && mocha --compilers js:babel-register tests",
"test:coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"release:patch": "npm run build && npm version patch -m \"chore: bump version to %s\" && git push --tags && git push && release && npm publish",
"release:minor": "npm run build && npm version minor -m \"chore: bump version to %s\" && git push --tags && git push && release && npm publish",
"release:major": "npm run build && npm version major -m \"chore: bump version to %s\" && git push --tags && git push && release && npm publish"
"release:patch": "npm run build && npm version patch -m \"chore: bump version to %s\" && git push --tags && git push && release",
"release:minor": "npm run build && npm version minor -m \"chore: bump version to %s\" && git push --tags && git push && release",
"release:major": "npm run build && npm version major -m \"chore: bump version to %s\" && git push --tags && git push && release"
},
"xo": {
"semicolon": false,
Expand Down

0 comments on commit ff82cab

Please sign in to comment.