Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
fix(package.json): fix git push misses remote branch
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Feb 12, 2017
1 parent f86cf6e commit e5bbbdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/app/templates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"docs": "jsdoc lib/ --recurse --destination docs --configure .jsdoc.json --readme README.md ",
"preversion": "npm run test",
"version": "npm run changelog && git add -A CHANGELOG.md",
"postversion": "git push && git push --tags",
"postversion": "git push origin master && git push origin master --tags",
"release-major": "npm version major -m \"chore(release): v%s\"",
"release-minor": "npm version minor -m \"chore(release): v%s\"",
"release-patch": "npm version patch -m \"chore(release): v%s\"",
Expand Down

0 comments on commit e5bbbdc

Please sign in to comment.