1.11.0 • Published 3 years ago

@s-ui/cz v1.11.0

Weekly downloads
1,207
License
MIT
Repository
github
Last release
3 years ago

sui-cz

A commitizen adapter for semantic commits.

It 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.

npm.io

Installation/Usage

Use sui-cz types with validate-commit-msg

npm install --save-dev validate-commit-msg
npm install --save-dev @s-ui/cz

in package.json

{
  "config": {
    "validate-commit-msg": {
      "types": "@s-ui/cz/types"
      /* rest of your config here */
    }
  }
}

Integrating validate-commit-msg with git "commit-msg" hook

We recommend using husky.

npm install husky --save-dev
npm install --save-dev validate-commit-msg
npm install --save-dev @s-ui/cz

in package.json

{
  "scripts": {
    /* ... your own scripts ... */
    "commitmsg": "validate-commit-msg"
  }
}
1.11.0

3 years ago

1.10.0

4 years ago

1.9.0

5 years ago

1.8.0

6 years ago

1.7.0

6 years ago

1.6.0

6 years ago

1.5.0

6 years ago

1.1.0

7 years ago

1.4.0

7 years ago