Skip to content

Commit

Permalink
chore(build): Added npm publish scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
kuuurt13 committed Apr 15, 2017
1 parent 752944c commit 429514e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"build:ngc": "node_modules/.bin/ngc -p tsconfig.json",
"build:tsc": "node_modules/typescript/bin/tsc -p tsconfig-umd.json",
"pack:dev": "npm run build && npm pack",
"prerelease": "npm run build",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin master && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin master && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin master && git push origin --tags",
"test": "node_modules/karma/bin/karma start karma.conf.js",
"test:watch": "node_modules/karma/bin/karma start karma.conf.js --singleRun=false"
},
Expand Down

0 comments on commit 429514e

Please sign in to comment.