@kyubiware/commit-mint 0.8.3 → 0.8.4
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/cli.mjs +3 -3
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -33,7 +33,7 @@ var __exportAll = (all, no_symbols) => {
|
|
|
33
33
|
//#region package.json
|
|
34
34
|
var package_default = {
|
|
35
35
|
name: "@kyubiware/commit-mint",
|
|
36
|
-
version: "0.8.
|
|
36
|
+
version: "0.8.4",
|
|
37
37
|
description: "🌿 AI-powered git commit tool — auto-group changed files, generate messages, run pre-commit checks",
|
|
38
38
|
type: "module",
|
|
39
39
|
bin: { "cmint": "./dist/cli.mjs" },
|
|
@@ -3910,11 +3910,11 @@ async function showStagingMenu(files, hasChecks) {
|
|
|
3910
3910
|
await setAutoAccept(next);
|
|
3911
3911
|
},
|
|
3912
3912
|
options: [
|
|
3913
|
-
{
|
|
3913
|
+
...files.length > 1 ? [{
|
|
3914
3914
|
label: "Auto-group into commits",
|
|
3915
3915
|
value: "autogroup",
|
|
3916
3916
|
hint: "LLM groups files into logical commits"
|
|
3917
|
-
},
|
|
3917
|
+
}] : [],
|
|
3918
3918
|
...stagedFiles.length > 0 ? [{
|
|
3919
3919
|
label: "Commit staged files only",
|
|
3920
3920
|
value: "staged",
|