git-repo-comitter 0.7.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -41,10 +41,12 @@ grc init
41
41
  grc
42
42
  ```
43
43
 
44
- ## 安装
44
+ ## 源码安装
45
45
 
46
46
  ```bash
47
- npx grc --version
47
+ pnpm i
48
+ pnpm build
49
+ npm i -g .
48
50
  ```
49
51
 
50
52
  本地开发:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-repo-comitter",
3
- "version": "0.7.0",
3
+ "version": "1.0.0",
4
4
  "description": "A CLI tool that uses LLM to generate Git commit messages and execute commits",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",