czg 1.3.11-beta.1 → 1.3.12-beta.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/README.md +9 -8
- package/bin/index.js +130 -130
- package/package.json +4 -4
package/README.md
CHANGED
@@ -35,9 +35,9 @@
|
|
35
35
|
<br/>
|
36
36
|
<br/>
|
37
37
|
|
38
|
-
- **Lightweight** : Zero Dependencies (1.3MB)
|
39
|
-
- **Simpler and Faster** : No plugin, No adapter, No extra steps, You can use `npx` | `npm script` | `global install`... quick start CLI in your any project
|
40
|
-
- **Highly Customizable** : Internally contains the core of cz-git. Extend all the features of cz-git. Same behavior, Same configuration loader... You can customize the commit CLI according to your need
|
38
|
+
- ⚡️ **Lightweight** : Zero Dependencies (1.3MB)
|
39
|
+
- 🤗 **Simpler and Faster** : No plugin, No adapter, No extra steps, You can use `npx` | `npm script` | `global install`... quick start CLI in your any project
|
40
|
+
- 😎 **Highly Customizable** : Internally contains the core of cz-git. Extend all the features of cz-git. Same behavior, Same configuration loader... You can customize the commit CLI according to your need
|
41
41
|
|
42
42
|

|
43
43
|
|
@@ -71,12 +71,13 @@ WEBSITE:
|
|
71
71
|
https://github.com/Zhengqbbb/cz-git
|
72
72
|
|
73
73
|
SYNOPSIS:
|
74
|
-
czg [subcommand] [options]
|
74
|
+
czg [subcommand...] [options...] [git-commit-options...]
|
75
75
|
|
76
76
|
SUBCOMMAND:
|
77
|
-
break Turn on
|
77
|
+
break Turn on appends a ! after the type/scope
|
78
78
|
emoji Turn on output message with emoji mode
|
79
79
|
checkbox Turn on scope checkbox mode
|
80
|
+
gpg Turn on use GPG sign commit message
|
80
81
|
|
81
82
|
OPTIONS:
|
82
83
|
--config Specify the configuration file to use
|
@@ -88,11 +89,11 @@ OPTIONS:
|
|
88
89
|
EXAMPLES:
|
89
90
|
czg
|
90
91
|
czg emoji
|
91
|
-
czg :
|
92
|
-
czg --alias=
|
92
|
+
czg :fd
|
93
|
+
czg --alias=fd
|
93
94
|
czg --config="./config/cz.json"
|
94
95
|
|
95
|
-
Extends 'git commit'
|
96
|
+
Extends 'git commit' options.
|
96
97
|
See 'git commit --help' for more information.
|
97
98
|
```
|
98
99
|
|