Skip to content

Commit

Permalink
build: clean package-lock.json before release (apache#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmud authored and zhaoyongjie committed Nov 26, 2021
1 parent 261738c commit 716c235
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions superset-frontend/temporary_superset_ui/superset-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@
"postrelease": "lerna run deploy-demo",
"list-changed-packages": "lerna changed",
"manual-release": "lerna publish --force-publish && yarn postrelease",
"ci:create-patch-version": "lerna version patch --yes",
"ci:create-minor-version": "lerna version minor --yes",
"ci:create-conventional-version": "lerna version --conventional-commits --create-release github --yes",
"ci:release-from-tag": "lerna publish from-package --yes",
"ci:release-conventional": "lerna publish --conventional-commits --create-release github --yes"
"clean-npm-lock": "rm -rf package-lock.json ./{packages,plugins}/*/package-lock.json",
"ci:create-patch-version": "yarn clean-npm-lock && lerna version patch --yes",
"ci:create-minor-version": "yarn clean-npm-lock && lerna version minor --yes",
"ci:create-conventional-version": "yarn clean-npm-lock && lerna version --conventional-commits --create-release github --yes",
"ci:release-from-tag": "yarn clean-npm-lock && lerna publish from-package --yes",
"ci:release-conventional": "yarn clean-npm-lock && lerna publish --conventional-commits --create-release github --yes"
},
"repository": "https://github.com/apache-superset/superset-ui.git",
"keywords": [
Expand Down

0 comments on commit 716c235

Please sign in to comment.