1.1.1 • Published 1 year ago

cz-smartbr-changelog v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

cz-smartbr-changelog

Status: npm version

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"
    }
  }