cz-smartbr-changelog
v1.1.1
Published
commitizen adapter for Smart Br commit messages pattern.
Downloads
15
Readme
cz-smartbr-changelog
inspired by cz-conventional-changelog
A commitizen adapter created to standardize commit messages in Smart Br company. The current pattern is
(#<task|history-code>)[<scope?>]: <commit-title>
Configuration
It is a solution made for a commitizen friendly repo, so follow the steps to use it in the project:
Installing commitizen
Install commitizen globally
npm install commitizen -g
Adding to the project
Install in your project with npm:
npm i cz-smartbr-changelog --save-dev #development dependency
or with yarn:
yarn add cz-smartbr-changelog -D #development dependency
In your package.json
, add:
"config": {
# ... other dependencies
"commitizen": {
"path": "./node_modules/cz-smartbr-changelog"
}
}