From f30aa7c25f3c51ed39ac597b611e0f637089fa74 Mon Sep 17 00:00:00 2001 From: Tony133 Date: Wed, 2 Dec 2020 11:37:50 +0100 Subject: [PATCH] docs(contributing): update contribution guide --- CONTRIBUTING.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 111ac9383..0e4c45628 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -186,7 +186,7 @@ Samples: (even more [samples](https://github.com/nestjs/nest/commits/master)) docs(changelog) update change log to beta.5 ``` ``` -bugfix(@nestjs/core) need to depend on latest rxjs and zone.js +fix(@nestjs/core) need to depend on latest rxjs and zone.js The version in our package.json gets copied to the one we publish, and users need the latest of these. ``` @@ -198,10 +198,11 @@ If the commit reverts a previous commit, it should begin with `revert: `, follow Must be one of the following: * **build**: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) +* **chore**: Updating tasks etc; no production code change * **ci**: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) * **docs**: Documentation only changes -* **feature**: A new feature -* **bugfix**: A bug fix +* **feat**: A new feature +* **fix**: A bug fix * **perf**: A code change that improves performance * **refactor**: A code change that neither fixes a bug nor adds a feature * **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)