From 0edf4c895ca6f5a39e388fcaa9351d6ce74ba5a1 Mon Sep 17 00:00:00 2001 From: Mist Date: Tue, 20 Feb 2024 15:19:09 +0800 Subject: [PATCH] [Feat] add release type --- packages/commitlint-config-wizardoc/src/constants.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/commitlint-config-wizardoc/src/constants.ts b/packages/commitlint-config-wizardoc/src/constants.ts index 7190071..4a72857 100644 --- a/packages/commitlint-config-wizardoc/src/constants.ts +++ b/packages/commitlint-config-wizardoc/src/constants.ts @@ -22,6 +22,7 @@ export enum CommitType { CHORE = "Chore", PERF = "Perf", DOC = "Doc", + RELEASE = "Release", } export const CONVERSION_MATCH_REGEX = /^(.?)\[(\w+?)(?:\:\:(\w*))?\]\s(.*)$/;