From 2a6ca4819780c9fbbb8d6817aabab5dc6b9fed3e Mon Sep 17 00:00:00 2001 From: neverland Date: Wed, 30 Jun 2021 14:32:15 +0800 Subject: [PATCH] feat(cli): support release commit type (#8957) --- packages/vant-cli/src/commands/commit-lint.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/vant-cli/src/commands/commit-lint.ts b/packages/vant-cli/src/commands/commit-lint.ts index e07a75fc0..7e631eba9 100644 --- a/packages/vant-cli/src/commands/commit-lint.ts +++ b/packages/vant-cli/src/commands/commit-lint.ts @@ -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'