czg 1.9.2 → 1.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/{config.d.ts → index.d.ts} +3 -0
- package/lib/index.js +1 -1
- package/package.json +3 -3
@@ -141,7 +141,9 @@ type TargetCaseType = 'camel-case' | 'kebab-case' | 'snake-case' | 'pascal-case'
|
|
141
141
|
* @copyright: Copyright (c) 2022-present Qiubin Zheng
|
142
142
|
*/
|
143
143
|
|
144
|
+
/** cz-git + commitlint configure */
|
144
145
|
interface UserConfig extends CommitlintUserConfig {
|
146
|
+
/** cz-git configure */
|
145
147
|
prompt?: CommitizenGitOptions;
|
146
148
|
}
|
147
149
|
interface Answers {
|
@@ -274,6 +276,7 @@ interface GenerateAIPromptType {
|
|
274
276
|
upperCaseSubject?: boolean;
|
275
277
|
diff?: string;
|
276
278
|
}
|
279
|
+
/** cz-git configure */
|
277
280
|
interface CommitizenGitOptions {
|
278
281
|
/**
|
279
282
|
* @description: define commonly used commit message alias
|