@kud/ai-conventional-commit-cli 0.4.4 → 0.5.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.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -714,7 +714,7 @@ async function runGenerate(config) {
|
|
|
714
714
|
return;
|
|
715
715
|
}
|
|
716
716
|
if (process.stdout.isTTY) {
|
|
717
|
-
await animateHeaderBase();
|
|
717
|
+
await animateHeaderBase(`ai-conventional-commit (using model ${config.model})`);
|
|
718
718
|
borderLine();
|
|
719
719
|
}
|
|
720
720
|
sectionTitle("Files");
|
|
@@ -866,7 +866,7 @@ async function runSplit(config, desired) {
|
|
|
866
866
|
return;
|
|
867
867
|
}
|
|
868
868
|
if (process.stdout.isTTY) {
|
|
869
|
-
await animateHeaderBase();
|
|
869
|
+
await animateHeaderBase(`ai-conventional-commit (using model ${config.model})`);
|
|
870
870
|
borderLine();
|
|
871
871
|
}
|
|
872
872
|
sectionTitle("Files");
|
|
@@ -1029,7 +1029,7 @@ async function runRefine(config, options) {
|
|
|
1029
1029
|
return;
|
|
1030
1030
|
}
|
|
1031
1031
|
if (process.stdout.isTTY) {
|
|
1032
|
-
await animateHeaderBase();
|
|
1032
|
+
await animateHeaderBase(`ai-conventional-commit (using model ${config.model})`);
|
|
1033
1033
|
borderLine();
|
|
1034
1034
|
}
|
|
1035
1035
|
sectionTitle("Original");
|
|
@@ -1136,7 +1136,7 @@ async function loadConfig(cwd = process.cwd()) {
|
|
|
1136
1136
|
// package.json
|
|
1137
1137
|
var package_default = {
|
|
1138
1138
|
name: "@kud/ai-conventional-commit-cli",
|
|
1139
|
-
version: "0.
|
|
1139
|
+
version: "0.5.0",
|
|
1140
1140
|
type: "module",
|
|
1141
1141
|
description: "Opinionated, style-aware AI assistant for crafting and splitting git commits (opencode-based, provider-agnostic).",
|
|
1142
1142
|
bin: {
|
package/package.json
CHANGED