6
6
7
7
Install commitizen
8
8
9
- ```
9
+ ``` shell
10
10
npm install -g commitizen
11
11
```
12
12
13
13
Install the ` mol-conventional-changelog ` package.
14
14
15
- ```
15
+ ``` shell
16
16
npm install --save-dev mol-conventional-changelog
17
17
```
18
18
19
19
Init commitizen configuration
20
20
21
- ```
21
+ ``` shell
22
22
commitizen init mol-conventional-changelog --save-dev --save-exact
23
23
```
24
24
@@ -28,25 +28,32 @@ commitizen init mol-conventional-changelog --save-dev --save-exact
28
28
git cz
29
29
```
30
30
31
- #### Examples
31
+ ## Examples
32
32
33
33
```
34
- feat: add 'graphiteWidth' option
34
+ feat: 🎸 add 'graphiteWidth' option
35
35
```
36
36
37
37
```
38
- fix: stop graphite breaking when width < 0.1
38
+ fix: 🐛 stop graphite breaking when width < 0.1
39
39
```
40
40
41
41
```
42
- perf: remove graphiteWidth option
42
+ perf: 🔥 remove graphiteWidth option
43
43
44
44
BREAKING CHANGE: The graphiteWidth option has been removed. The default graphite width of 10mm is always used for performance reason.
45
45
46
46
Issues: MOL-1234
47
47
```
48
48
49
- ### Commit Message Format
49
+
50
+ ## Custmo config
51
+
52
+ You can privide custom configuration in ` changelog.congfig.js ` file
53
+ in your repo. See [ default configuration file] ( ./src/defaults.js ) for reference.
54
+
55
+
56
+ ## Commit Message Format
50
57
51
58
* A commit message consists of a ** header** , ** body** and ** footer** .
52
59
* The header has a ** type** and a ** subject** :
@@ -76,11 +83,12 @@ Must be one of the following:
76
83
* ` feat ` : A new feature.
77
84
* ` fix ` : A bug fix.
78
85
* ` docs ` : Documentation only changes.
79
- * ` style ` : Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc).
86
+ * ` style ` : Markup-only changes (white-space, formatting, missing semi-colons, etc).
80
87
* ` refactor ` : A code change that neither fixes a bug or adds a feature.
81
88
* ` perf ` : A code change that improves performance.
82
89
* ` test ` : Adding or updating tests.
83
- * ` chore ` : Changes to the build process or auxiliary tools and libraries such as documentation generation and linters.
90
+ * ` chore ` : Build process or auxiliary tool changes.
91
+ * ` ci ` : CI related changes.
84
92
85
93
### Subject
86
94
0 commit comments