Commitizen adapter for sui packages
npm install @s-ui/czIt provides
* CLI commit prompt to guide developer on commit messages.
* Enforcement of semantic commits human-readable and machine- parsable.
* Parseable commits are used for releases by sui-mono
It's highly inspired in cz-customizable adapter.

``shell`
npm install --save-dev validate-commit-msg
npm install --save-dev @s-ui/cz
in package.json
`js`
{
"config": {
"validate-commit-msg": {
"types": "@s-ui/cz/types"
/ rest of your config here /
}
}
}
We recommend using husky.
``
npm install husky --save-dev
`shell`
npm install --save-dev validate-commit-msg
npm install --save-dev @s-ui/cz
in package.json
`js``
{
"scripts": {
/ ... your own scripts ... /
"commitmsg": "validate-commit-msg"
}
}