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

Commit

Permalink
fix(other): optimize release build
Browse files Browse the repository at this point in the history
  • Loading branch information
hypery2k committed Nov 8, 2016
1 parent b31d9dc commit 0fda94d
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 @@ -16,9 +16,9 @@
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:pre": "npm run build && npm run changelog && npm run changelog:add",
"release:major": "npm run release:pre && npm version major && git push origin && git push origin --tags",
"release:minor": "npm run release:pre && npm version minor && git push origin && git push origin --tags",
"release:patch": "npm run release:pre && npm version patch && git push origin && git push origin --tags"
"release:major": "npm version major && npm run release:pre && git push origin && git push origin --tags",
"release:minor": "npm version minor && npm run release:pre && git push origin && git push origin --tags",
"release:patch": "npm version patch && npm run release:pre && git push origin && git push origin --tags"
},
"dependencies": {
"@types/core-js": "0.9.34",
Expand Down

0 comments on commit 0fda94d

Please sign in to comment.