Conventional commits specification contains a set of rules for creating an explicit commit history, which makes it easier to write automated tools on top of, for example, semantic release. You can manually follow this convention in your project or use a tool to assist you, such as Commitizen.
There are some ways to use Commitizen in your project, in this post, I will show you how to set it up with Husky, so whenever you run git commit
, you'll be prompted to fill out any required commit fields at commit time.
To start, install Commitzen and Husky packages:
npm i commitizen husky --save-dev
Next, initialize your project to use the cz-conventional-changelog adapter
commitizen init cz-conventional-changelog --save-dev --save-exact
That command will do the following:
Install the cz-conventional-changelog adapter npm module;
Save it to
package.json
'sdependencies
ordevDependencies
;Add the
config.commitizen
key to the root of yourpackage.json
.
Finally, in the package.json
file, set a Husky´s hook to trigger Commitzen on commit command
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
}
And that´s it, you are all set. Make some changes to your code, run git commit
, and follow the Commitzen instructions.
Top comments (1)
Great post