Skip to content

Commit 687bd1f

Browse files
author
Evgeny Zakharov
committed
fix: remove yarn commit requirement
1 parent 4785a0a commit 687bd1f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Then, the `release` workflow handles everything:
124124
### Regular flow
125125

126126
1. Create [feature branch](#conventions)
127-
2. Make changes in your feature branch and [commit](#conventions) using `yarn commit`
127+
2. Make changes in your feature branch and [commit](#conventions)
128128
3. Create a Pull Request from your feature branch to `main`
129129
The PR is needed to test the code before pushing to release branch
130130
4. If your PR contains breaking changes, don't forget to put a `BREAKING CHANGES` label
@@ -136,7 +136,7 @@ Then, the `release` workflow handles everything:
136136
1. Assume your prerelease tag is `beta`
137137
2. Create `release/beta` branch
138138
3. Create [feature branch](#conventions)
139-
4. Make changes in your feature branch and [commit](#conventions) using `yarn commit`
139+
4. Make changes in your feature branch and [commit](#conventions)
140140
5. Create a Pull Request from your feature branch to `release/beta`
141141
The PR is needed to test the code before pushing to release branch
142142
6. Create Github release with tag like `v1.0.0-beta`, pointing to `release/beta` branch
@@ -153,8 +153,8 @@ Then, the `release` workflow handles everything:
153153

154154
**Commits**:
155155

156-
- Should be created using `yarn commit` command
157156
- Should follow the [Conventional Commits specification](https://www.conventionalcommits.org)
157+
- You can find supported types and scopes into `.cz-config.js`
158158

159159
**Pull requests**:
160160

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"test:watch": "yarn test --watchAll",
2323
"lint": "eslint --ext .ts,.tsx src",
2424
"lint:fix": "yarn lint --fix",
25-
"commit": "cz",
2625
"prepare": "is-ci || husky install",
2726
"postinstall": "yarn prepare",
2827
"prepack": "pinst --disable",

0 commit comments

Comments
 (0)