fix(cli): get gitParams from scripts

This commit is contained in:
chenjiahan 2021-04-04 15:08:12 +08:00
parent 8f0c187278
commit fff6b3b096
2 changed files with 4 additions and 3 deletions

View File

@ -4,8 +4,7 @@ import { consola } from '../common/logger';
const commitRE = /^(revert: )?(fix|feat|docs|perf|test|types|style|build|chore|refactor|breaking change)(\(.+\))?: .{1,50}/;
const mergeRE = /Merge /;
export function commitLint() {
const gitParams = process.env.HUSKY_GIT_PARAMS as string;
export function commitLint(gitParams: string) {
const commitMsg = readFileSync(gitParams, 'utf-8').trim();
if (!commitRE.test(commitMsg) && !mergeRE.test(commitMsg)) {

View File

@ -53,6 +53,8 @@ command('build-site')
command('changelog').description('Generate changelog').action(changelog);
command('commit-lint').description('Lint commit message').action(commitLint);
command('commit-lint <gitParams>')
.description('Lint commit message')
.action(commitLint);
parse();