nocommit 0.0.4 → 0.0.6
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/README.md +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { KnownError, handleCliError } from "./error.js";
|
|
|
9
9
|
const program = new Command();
|
|
10
10
|
program
|
|
11
11
|
.name("nocommit")
|
|
12
|
-
.version("0.0.
|
|
12
|
+
.version("0.0.6")
|
|
13
13
|
.description("AI-powered git commit message generator")
|
|
14
14
|
.option("-a, --all", "Stage all tracked changes before committing")
|
|
15
15
|
.option("-y, --yes", "Skip confirmation and commit with first suggestion");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nocommit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "AI-powered CLI that writes your git commit messages using Google Gemini. Never write a commit message again.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"name": "Asim Sk",
|
|
30
30
|
"url": "https://github.com/asimar007"
|
|
31
31
|
},
|
|
32
|
-
"homepage": "https://
|
|
32
|
+
"homepage": "https://nocommit.asimsk.site",
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
35
35
|
"url": "git+https://github.com/asimar007/no-commit.git"
|