Skip to content

Commit

Permalink
chore(config): add release script
Browse files Browse the repository at this point in the history
  • Loading branch information
pubuzhixing8 committed May 26, 2021
1 parent 8d075f0 commit b96fbf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
"build": "ng build slate-angular && cpx \"./packages/src/**/*.scss\" ./dist/",
"build:demo": "ng build demo --prod",
"pub": "npm run build && cd dist && npm publish --access public",
"patch": "cd packages && npm version patch && cd ../ && git add . && standard-version -a --release-as patch && npm run pub",
"patch": "cd packages && npm version patch && cd ../ && git add . && standard-version -a --release-as patch",
"minor": "cd packages && npm version minor && cd ../ && git add . && standard-version -a --release-as minor && npm run pub",
"major": "cd packages && npm version major && cd ../ && git add . && standard-version -a --release-as major && npm run pub",
"release": "standard-version",
"test": "ng test slate-angular",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"lint": "ng lint",
Expand Down

0 comments on commit b96fbf9

Please sign in to comment.