build(package.json): modify commit message to pass commitlint when releasing package

This commit is contained in:
Bowen Tan 2022-06-06 15:43:20 +08:00
parent 07b6375790
commit d69ade6655

View File

@ -7,8 +7,8 @@
"test:ci": "jest -c config/jest.ci.config.js",
"lint": "eslint packages --ext .ts --ext .tsx",
"fix-lint": "eslint --fix packages --ext .ts --ext .tsx",
"release": "lerna publish",
"release:canary": "branch=$(git rev-parse --abbrev-ref HEAD); lerna publish --canary --preid $branch",
"release": "lerna publish -m 'chore(*): publish'",
"release:canary": "branch=$(git rev-parse --abbrev-ref HEAD); lerna publish --canary --preid $branch -m 'chore(*): publish'",
"commit": "git cz",
"prepare": "husky install"
},