turbobeast / customizable-commit-analyzer

Customizable commit message analyzer for use with semantic-release

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

customizable-commit-analyzer

Build Status npm version

NPM module for analyzeCommits option in semantic-release. See semantic-release plugins.

  npm install @bubltechnology/customizable-commit-analyzer --save-dev
{
  "release": {
    "analyzeCommits": "@bubltechnology/customizable-commit-analyzer"
  }
}

The default settings for this package are

feat: 'minor',
fix: 'patch',
docs: 'patch',
style: null,
refactor: 'patch',
perf: 'patch',
test: null,
chore: null

But you can customize this in your package.json.

{
  "config": {
    "commitTypeMap": { "style": "patch" }
  }
}

License

Apache 2.0

About

Customizable commit message analyzer for use with semantic-release

License:Other


Languages

Language:JavaScript 100.0%