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.
Files changed (3) hide show
  1. package/README.md +9 -8
  2. package/bin/index.js +130 -130
  3. 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
  ![demo](https://user-images.githubusercontent.com/40693636/175753060-cf4f5e48-100d-430a-93e9-31b17f42802f.gif)
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 BREAKING CHANGE mode, Add ! mark on header
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 :ff
92
- czg --alias=ff
92
+ czg :fd
93
+ czg --alias=fd
93
94
  czg --config="./config/cz.json"
94
95
 
95
- Extends 'git commit' command and options.
96
+ Extends 'git commit' options.
96
97
  See 'git commit --help' for more information.
97
98
  ```
98
99