feat(cli): allow merge commit message

This commit is contained in:
陈嘉涵 2019-11-29 17:59:57 +08:00
parent 2baaf33c62
commit fac3e60ad2
2 changed files with 3 additions and 2 deletions

View File

@ -2,12 +2,13 @@ import signale from 'signale';
import { readFileSync } from 'fs';
const commitRE = /^(revert: )?(fix|feat|docs|perf|test|types|build|chore|refactor|breaking change)(\(.+\))?: .{1,50}/;
const mergeRE = /Merge branch /;
export function commitLint() {
const gitParams = process.env.HUSKY_GIT_PARAMS as string;
const commitMsg = readFileSync(gitParams, 'utf-8').trim();
if (!commitRE.test(commitMsg)) {
if (!commitRE.test(commitMsg) || !mergeRE.test(commitMsg)) {
signale.error(`Error: invalid commit message: "${commitMsg}".
Proper commit message format is required for automated changelog generation.
@ -30,6 +31,7 @@ Allowed Types:
- chore
- refactor
- breaking change
- Merge branch 'foo' into 'bar'
`);
process.exit(1);
}

View File

@ -1,4 +1,3 @@
import { clean } from '../commands/clean';
import { setNodeEnv } from '../common';
import { compileSite } from '../compiler/compile-site';