@kud/ai-conventional-commit-cli 0.7.0 → 0.7.1
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 +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -702,8 +702,10 @@ function renderCommitBlock(opts) {
|
|
|
702
702
|
const lines = opts.body.split("\n");
|
|
703
703
|
lines.forEach((line, i) => {
|
|
704
704
|
if (line.trim().length === 0) borderLine();
|
|
705
|
-
else if (i === 0)
|
|
706
|
-
|
|
705
|
+
else if (i === 0) {
|
|
706
|
+
borderLine(descColor("Description:"));
|
|
707
|
+
borderLine(bodyFirst(line));
|
|
708
|
+
} else borderLine(bodyRest(line));
|
|
707
709
|
});
|
|
708
710
|
}
|
|
709
711
|
}
|
|
@@ -1113,7 +1115,7 @@ async function runRefine(config, options) {
|
|
|
1113
1115
|
// package.json
|
|
1114
1116
|
var package_default = {
|
|
1115
1117
|
name: "@kud/ai-conventional-commit-cli",
|
|
1116
|
-
version: "0.7.
|
|
1118
|
+
version: "0.7.1",
|
|
1117
1119
|
type: "module",
|
|
1118
1120
|
description: "Opinionated, style-aware AI assistant for crafting and splitting git commits (opencode-based, provider-agnostic).",
|
|
1119
1121
|
bin: {
|
package/package.json
CHANGED