@@ -196,7 +196,7 @@ Any line of the commit message cannot be longer than 100 characters.
196196 │ │
197197 │ └─⫸ Summary in present tense. Not capitalized. No period at the end.
198198 │
199- └─⫸ Commit Type: build| ci | docs| feat| fix| perf | refactor| test
199+ └─⫸ Commit Type: build| chore | docs| feat| fix| refactor| style | test| update
200200` ` `
201201
202202The ` < type> ` and ` < summary> ` fields are mandatory, the ` (< scope> )` field is optional.
@@ -206,14 +206,15 @@ The `<type>` and `<summary>` fields are mandatory, the `(<scope>)` field is opti
206206
207207Must be one of the following:
208208
209- * ** build** : Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
210- * ** ci** : Changes to our CI configuration files and scripts (example scopes: Circle, BrowserStack, SauceLabs)
211- * ** docs** : Documentation only changes
212- * ** feat** : A new feature
213- * ** fix** : A bug fix
214- * ** perf** : A code change that improves performance
215- * ** refactor** : A code change that neither fixes a bug nor adds a feature
216- * ** test** : Adding missing tests or correcting existing tests
209+ * ** build** : add required/missing build file
210+ * ** chore** : updating grunt tasks etc; no production code change
211+ * ** docs** : changes to the documentation
212+ * ** feat** : new feature for the user, not a new feature for build script
213+ * ** fix** : bug fix for the user, not a fix to a build script
214+ * ** refactor** : refactoring production code, eg. renaming a variable
215+ * ** style** : formatting, missing semi colons, etc; no production code change
216+ * ** test** : adding missing tests, refactoring tests; no production code change
217+ * ** update** : update an old feature; file;
217218
218219
219220# #### Summary
0 commit comments