JSPM

  • Created
  • Published
  • Downloads 151889
  • Score
    100M100P100Q163736F
  • License MIT

commitizen prompt using commitlint.config.js

Package Exports

  • @commitlint/prompt

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@commitlint/prompt) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

commitizen adapter using commitlint.config.js

@commitlint/prompt

This is the library and commitizen adapter version of commitlint prompt. A ready-to-use cli version is available at @commitlint/prompt-cli. Learn how to use it at docs/prompt.

Getting started

npm install --save @commitlint/prompt @commitlint/config-angular commitizen
echo "module.exports = {extends: ['@commitlint/config-angular']};" > commitlint.config.js

In package.json

{
  "scripts": {
    "commit": "git-cz"
  },
  "config": {
    "commitizen": {
      "path": "@commitlint/prompt"
    }
  }
}
git add .
npm run commit