New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@bubltechnology/customizable-commit-analyzer

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bubltechnology/customizable-commit-analyzer

Customizable commit message analyzer for use with semantic-release

  • 1.0.2-0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15
decreased by-64.29%
Maintainers
2
Weekly downloads
 
Created
Source

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, by defining an object right in your package.json.

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

Or by specifying a package that exports a custom commit-type map object.

{
  "config": {
    "commitTypeMap": "conventional-commit-type-map"
  }
}

License

Apache 2.0

Keywords

FAQs

Package last updated on 10 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc