mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
build: update lint-commit-msg rules (#4167)
* build: update lint-commit-msg rules * build: update release.sh
This commit is contained in:
parent
a7e66f1f8c
commit
66f3aac389
6
.github/PULL_REQUEST_TEMPLATE.md
vendored
6
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -12,9 +12,9 @@
|
||||
|
||||
Example:
|
||||
|
||||
- [fix] Button: incorrect style
|
||||
- [feat] Button: add color prop
|
||||
- [dosc] Button: fix typo
|
||||
- fix(Button): incorrect style
|
||||
- feat(Button): incorrect style
|
||||
- docs(Button): fix typo
|
||||
|
||||
Allowed Types:
|
||||
|
||||
|
@ -4,7 +4,7 @@ const signale = require('signale');
|
||||
const gitParams = process.env.HUSKY_GIT_PARAMS;
|
||||
const commitMsg = fs.readFileSync(gitParams, 'utf-8').trim();
|
||||
|
||||
const commitRE = /^(revert: )?\[(fix|feat|docs|perf|test|types|build|chore|refactor|breaking change)\].{1,50}/;
|
||||
const commitRE = /^(revert: )?(fix|feat|docs|perf|test|types|build|chore|refactor|breaking change)(\(.+\))?: .{1,50}/;
|
||||
|
||||
if (!commitRE.test(commitMsg)) {
|
||||
signale.error(`Error: invalid commit message format.
|
||||
@ -13,9 +13,9 @@ Proper commit message format is required for automated changelog generation.
|
||||
|
||||
Examples:
|
||||
|
||||
[fix] Button: incorrect style
|
||||
[feat] Button: add color prop
|
||||
[dosc] Button: fix typo
|
||||
- fix(Button): incorrect style
|
||||
- feat(Button): incorrect style
|
||||
- docs(Button): fix typo
|
||||
|
||||
Allowed Types:
|
||||
|
||||
|
@ -13,7 +13,7 @@ then
|
||||
|
||||
# commit
|
||||
git tag v$VERSION
|
||||
git commit -am "[build] release: $VERSION"
|
||||
git commit -am "build: release $VERSION"
|
||||
|
||||
# publish
|
||||
git push origin dev
|
||||
|
Loading…
x
Reference in New Issue
Block a user