@kud/ai-conventional-commit-cli 0.4.0 → 0.4.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 +10 -2
- package/package.json +10 -2
package/dist/index.js
CHANGED
|
@@ -1134,7 +1134,7 @@ async function loadConfig(cwd = process.cwd()) {
|
|
|
1134
1134
|
// package.json
|
|
1135
1135
|
var package_default = {
|
|
1136
1136
|
name: "@kud/ai-conventional-commit-cli",
|
|
1137
|
-
version: "0.4.
|
|
1137
|
+
version: "0.4.1",
|
|
1138
1138
|
type: "module",
|
|
1139
1139
|
description: "Opinionated, style-aware AI assistant for crafting and splitting git commits (opencode-based, provider-agnostic).",
|
|
1140
1140
|
bin: {
|
|
@@ -1192,7 +1192,15 @@ var package_default = {
|
|
|
1192
1192
|
engines: {
|
|
1193
1193
|
node: ">=18.17"
|
|
1194
1194
|
},
|
|
1195
|
-
license: "MIT"
|
|
1195
|
+
license: "MIT",
|
|
1196
|
+
repository: {
|
|
1197
|
+
type: "git",
|
|
1198
|
+
url: "git+https://github.com/kud/ai-conventional-commit-cli.git"
|
|
1199
|
+
},
|
|
1200
|
+
bugs: {
|
|
1201
|
+
url: "https://github.com/kud/ai-conventional-commit-cli/issues"
|
|
1202
|
+
},
|
|
1203
|
+
homepage: "https://github.com/kud/ai-conventional-commit-cli#readme"
|
|
1196
1204
|
};
|
|
1197
1205
|
|
|
1198
1206
|
// src/index.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kud/ai-conventional-commit-cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Opinionated, style-aware AI assistant for crafting and splitting git commits (opencode-based, provider-agnostic).",
|
|
6
6
|
"bin": {
|
|
@@ -58,5 +58,13 @@
|
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=18.17"
|
|
60
60
|
},
|
|
61
|
-
"license": "MIT"
|
|
61
|
+
"license": "MIT",
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "git+https://github.com/kud/ai-conventional-commit-cli.git"
|
|
65
|
+
},
|
|
66
|
+
"bugs": {
|
|
67
|
+
"url": "https://github.com/kud/ai-conventional-commit-cli/issues"
|
|
68
|
+
},
|
|
69
|
+
"homepage": "https://github.com/kud/ai-conventional-commit-cli#readme"
|
|
62
70
|
}
|