From c02f1931293b18bb15d9b46d8896c07c1954dc18 Mon Sep 17 00:00:00 2001 From: Aleksandr Smyshliaev Date: Sat, 16 Nov 2024 14:43:51 +0400 Subject: [PATCH] docs: Update CONTRIBUTING.md --- CONTRIBUTING.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8c066b4..6e9a1c4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,10 +8,12 @@ Make sure that what you trying to fix really a bug, or if adding feature that is - Run `npm run dev` for run the demo project in watch mode 2. Write code! Add some feature or fix bug. + + 2.1 [Use conventional commit format](https://gist.github.com/qoomon/5dfcdf8eec66a051ecd85625518cfd13) + + `fix` and `feat` will bump the version, **those tags should be used only for files inside `./packages/urlstate` or `package.json`**. -`fix` and `feat` will bump the version, **those tags should be used only for files inside `./packages/urlstate` or `package.json`**. - -There are also `ci`, `build`, `docs`, `style`, `test`, `chore` and `refactor`. + There are also `ci`, `build`, `docs`, `style`, `test`, `chore` and `refactor`. 3. Check that all tests passed(unit and e2e) and add tests for your code. Run all tests witn `npm run test`