czg 0.0.1 → 0.0.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/README.md +40 -0
- package/bin/index.js +311 -0
- package/package.json +12 -7
- package/CHANGELOG.md +0 -0
- package/lib/index.js +0 -2
- package/src/index.ts +0 -3
- package/tsconfig.json +0 -11
- package/tsup.config.ts +0 -12
package/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# czg
|
2
|
+
|
3
|
+
> Interactive Commitizen CLI that generate standardized commit messages
|
4
|
+
|
5
|
+
WIP
|
6
|
+
|
7
|
+
```sh
|
8
|
+
❯ npx czg --help
|
9
|
+
NAME:
|
10
|
+
czg - Interactive Commitizen CLI that generate standardized commit messages
|
11
|
+
|
12
|
+
WEBSITE:
|
13
|
+
https://cz-git.qbenben.com/cli/
|
14
|
+
https://github.com/Zhengqbbb/cz-git
|
15
|
+
|
16
|
+
USAGE:
|
17
|
+
czg [subcommand] [options]
|
18
|
+
|
19
|
+
SUBCOMMAND:
|
20
|
+
init Generate initialize commitizen configFile and guide
|
21
|
+
Default porvide interactive prompt. skip 'czg init -y'
|
22
|
+
emoji Turn on emoji mode
|
23
|
+
checkbox Turn on scope checkbox mode
|
24
|
+
version Show version
|
25
|
+
help Show help
|
26
|
+
|
27
|
+
OPTIONS:
|
28
|
+
--config Specify the configuration file to use
|
29
|
+
--reback|-b Provide interactive prompt by the last message
|
30
|
+
--retry|-r Direct retry submit by the last message
|
31
|
+
|
32
|
+
EXAMPLES:
|
33
|
+
czg
|
34
|
+
czg emoji
|
35
|
+
czg --config "./config/cz.json"
|
36
|
+
|
37
|
+
Run 'czg SUBCOMMAND --help' for more information on a command
|
38
|
+
Extends 'git commit' command and options.
|
39
|
+
See 'git commit --help' for more information.
|
40
|
+
```
|