git-coco 0.14.10 → 0.15.0
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/dist/index.d.ts +9 -0
- package/dist/index.esm.mjs +2216 -20760
- package/dist/index.js +2217 -20761
- package/package.json +7 -3
package/dist/index.d.ts
CHANGED
|
@@ -90,6 +90,14 @@ type BaseConfig = {
|
|
|
90
90
|
* @default 'stdout'
|
|
91
91
|
*/
|
|
92
92
|
mode: 'stdout' | 'interactive';
|
|
93
|
+
/**
|
|
94
|
+
* Whether to generate commit messages in Conventional Commits format.
|
|
95
|
+
* When enabled, commit messages will follow the Conventional Commits specification.
|
|
96
|
+
*
|
|
97
|
+
* @see https://www.conventionalcommits.org/
|
|
98
|
+
* @default false
|
|
99
|
+
*/
|
|
100
|
+
conventionalCommits?: boolean;
|
|
93
101
|
/**
|
|
94
102
|
* Enable verbose logging.
|
|
95
103
|
*
|
|
@@ -168,6 +176,7 @@ interface CommitOptions extends BaseCommandOptions {
|
|
|
168
176
|
ignoredFiles: string[];
|
|
169
177
|
ignoredExtensions: string[];
|
|
170
178
|
withPreviousCommits: number;
|
|
179
|
+
conventional: boolean;
|
|
171
180
|
}
|
|
172
181
|
type CommitArgv = Arguments<CommitOptions>;
|
|
173
182
|
|