Skip to content

Commit

Permalink
build: add commands to release via lerna (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmud authored and zhaoyongjie committed Nov 30, 2021
1 parent f753447 commit 1f09603
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
"prepare-release": "git checkout master && git pull --rebase origin master && lerna bootstrap && yarn install && yarn test",
"prerelease": "yarn build",
"pretest": "yarn lint",
"release-patch-version": "yarn prepare-release && lerna version patch && lerna publish && yarn postrelease",
"release-minor-version": "yarn prepare-release && lerna version minor && lerna publish && yarn postrelease",
"release": "yarn prepare-release && lerna publish --exact && yarn postrelease",
"postrelease": "lerna run deploy-demo",
"storybook": "cd packages/superset-ui-plugins-demo && yarn storybook"
Expand Down

0 comments on commit 1f09603

Please sign in to comment.