Skip to content

Commit 6f3ebbe

Browse files
committedMay 23, 2018
docs: ✍️ update README
1 parent a122772 commit 6f3ebbe

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed
 

‎README.md

+18-10
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66

77
Install commitizen
88

9-
```
9+
```shell
1010
npm install -g commitizen
1111
```
1212

1313
Install the `mol-conventional-changelog` package.
1414

15-
```
15+
```shell
1616
npm install --save-dev mol-conventional-changelog
1717
```
1818

1919
Init commitizen configuration
2020

21-
```
21+
```shell
2222
commitizen init mol-conventional-changelog --save-dev --save-exact
2323
```
2424

@@ -28,25 +28,32 @@ commitizen init mol-conventional-changelog --save-dev --save-exact
2828
git cz
2929
```
3030

31-
#### Examples
31+
## Examples
3232

3333
```
34-
feat: add 'graphiteWidth' option
34+
feat: 🎸 add 'graphiteWidth' option
3535
```
3636

3737
```
38-
fix: stop graphite breaking when width < 0.1
38+
fix: 🐛 stop graphite breaking when width < 0.1
3939
```
4040

4141
```
42-
perf: remove graphiteWidth option
42+
perf: 🔥 remove graphiteWidth option
4343
4444
BREAKING CHANGE: The graphiteWidth option has been removed. The default graphite width of 10mm is always used for performance reason.
4545
4646
Issues: MOL-1234
4747
```
4848

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
5057

5158
* A commit message consists of a **header**, **body** and **footer**.
5259
* The header has a **type** and a **subject**:
@@ -76,11 +83,12 @@ Must be one of the following:
7683
* `feat`: A new feature.
7784
* `fix`: A bug fix.
7885
* `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).
8087
* `refactor`: A code change that neither fixes a bug or adds a feature.
8188
* `perf`: A code change that improves performance.
8289
* `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.
8492

8593
### Subject
8694

0 commit comments

Comments
 (0)
Please sign in to comment.