@@ -211,16 +211,17 @@ format that includes a **type** and a **subject**:
211
211
212
212
This is the list of _type_ of commits that we accept:
213
213
214
- - ** ast** : Init, migrate, etc.
215
- - ** break** : Changes that break the behaviour of the cli.
214
+ - ** build** : Changes that affect the build system or external dependencies (example scopes: typescript, webpack, npm).
216
215
- ** chore** : Updating deps, docs, linting, etc.
217
- - ** cli ** : Changes related to core CLI things.
216
+ - ** ci ** : Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
218
217
- ** docs** : Documentation only changes.
219
218
- ** feat** : A new feature.
220
- - ** fix** : A bug fix, typos, etc.
221
- - ** misc** : Other formats like tweaks and such.
222
- - ** tests** : Adding missing or correcting existing tests.
219
+ - ** fix** : A bug fix.
220
+ - ** perf** : A code change that improves performance.
223
221
- ** refactor** : A code change that neither fixes a bug nor adds a feature.
222
+ - ** revert** : Reverts the previous commit.
223
+ - ** style** : Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc).
224
+ - ** test** : Adding missing tests or correcting existing tests.
224
225
225
226
The ** header** is mandatory.
226
227
0 commit comments