conventional-changelog-conventionalcommits
conventional-changelog conventionalcommits.org preset
Last updated 5 years ago by bcoe .
ISC · Repository · Bugs · Original npm
$ cnpm install conventional-changelog-conventionalcommits 
SYNC missed versions from official npm registry.

Build Status Coverage Status

conventionalcommits.org convention

A concrete implementation of the specification described at conventionalcommits.org for automated CHANGELOG generation and version management.

Indirect Usage (as preset)

Use the Conventional Changelog CLI Quick Start with the -p conventionalcommits option.

Direct Usage (as a base preset so you can customize it)

If you want to use this package directly and pass options, you can use the Conventional Changelog CLI Quick Start and with the --config or -n parameter, pass a js config that looks like this

'use strict'
const config = require('conventional-changelog-conventionalcommits')

module.exports = config({
    "issuePrefixes": ["TEST-"],
    "issueUrlFormat": "myBugTracker.com/{prefix}{id}"
})

or json config like that:

{
    "options": {
        "preset": {
            "name": "conventionalchangelog",
            "issuePrefixes": ["TEST-"],
            "issueUrlFormat": "myBugTracker.com/{prefix}{id}"
        }
    }
}

This last json config way passes the preset object to the conventional-changelog-preset-loader package, that in turn, passes this same preset object as the config for the conventional-changelog-conventionalcommits.

See conventional-changelog-config-spec for available configuration options.

Current Tags

  • 5.0.0                                ...           latest (3 years ago)
  • 4.5.0                                ...           next (5 years ago)

7 Versions

  • 5.0.0                                ...           3 years ago
  • 4.6.3                                ...           4 years ago
  • 4.6.1                                ...           4 years ago
  • 4.2.3                                ...           6 years ago
  • 4.6.0                                ...           4 years ago
  • 4.5.0                                ...           5 years ago
  • 4.3.0                                ...           5 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (3)
Dev Dependencies (0)
None
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org