Skip to content

Commit

Permalink
fix: rebuild before releases
Browse files Browse the repository at this point in the history
  • Loading branch information
marionebl committed Feb 14, 2016
1 parent b4cee21 commit 763bf53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"push": "git push && git push --tags && hub release create \"v$(cat .git/RELEASE_VERSION.tmp)\" --message=\"v$(cat .git/RELEASE_VERSION.tmp)\n$(cat .git/COMMITMSG.tmp)\" && npm publish && rm .git/RELEASE_VERSION.tmp && rm .git/COMMITMSG.tmp",
"release": "npm version $(conventional-recommended-bump -p angular)",
"test": "eslint *.js && jsonlint-cli *.json && node distribution/cli.js --from=HEAD~1",
"preversion": "npm test",
"preversion": "npm run build && npm test",
"version": "npm run changelog && git add . && echo \"$(conventional-changelog -p angular)\" > .git/COMMITMSG.tmp",
"postversion": "echo $(git log -1 --pretty=%B HEAD^..HEAD) > .git/RELEASE_VERSION.tmp && git tag -d v$(cat .git/RELEASE_VERSION.tmp) && git commit --amend -m \"chore(release): $(cat .git/RELEASE_VERSION.tmp)\n$(cat .git/COMMITMSG.tmp)\" && git tag -a v$(cat .git/RELEASE_VERSION.tmp) -m \"$(cat .git/COMMITMSG.tmp)\""
},
Expand Down

0 comments on commit 763bf53

Please sign in to comment.