Skip to content

Commit

Permalink
fix release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
JulitorK committed Sep 14, 2023
1 parent eee008a commit 8744fb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"prebuild": "npm run clean",
"build": "rollup -c rollup.config.ts",
"build-storybook": "build-storybook -o docs-build",
"release:minor": "git checkout master && git pull && npm run test && npm run ts && npm run build && npm version patch && git add -A && git push && git push --tags && npm publish",
"release:major": "git checkout master && git pull && npm run test && npm run ts && npm run build && npm version major && git add -A && git push && git push --tags && npm publish",
"release:minor": "git checkout v3 && git pull && npm run test && npm run ts && npm run build && npm version patch && git add -A && git push && git push --tags && npm publish",
"release:major": "git checkout v3 && git pull && npm run test && npm run ts && npm run build && npm version major && git add -A && git push && git push --tags && npm publish",
"clean": "rimraf dist dist-commonjs types"
},
"repository": {
Expand Down

0 comments on commit 8744fb7

Please sign in to comment.