feat(cli): support release commit type (#8957)

This commit is contained in:
neverland 2021-06-30 14:32:15 +08:00 committed by GitHub
parent 9040bfd77c
commit 2a6ca48197
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
import { readFileSync } from 'fs-extra';
import { consola } from '../common/logger';
const commitRE = /^(revert: )?(fix|feat|docs|perf|test|types|style|build|chore|refactor|breaking change)(\(.+\))?: .{1,50}/;
const commitRE = /^(revert: )?(fix|feat|docs|perf|test|types|style|build|chore|release|refactor|breaking change)(\(.+\))?: .{1,50}/;
const mergeRE = /Merge /;
export function commitLint(gitParams: string) {
@ -28,6 +28,7 @@ Allowed Types:
- types
- build
- chore
- release
- refactor
- breaking change
- Merge branch 'foo' into 'bar'