You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
2 years ago | |
|---|---|---|
| .. | ||
| templates | 2 years ago | |
| LICENSE.md | 2 years ago | |
| README.md | 2 years ago | |
| add-bang-notes.js | 2 years ago | |
| conventional-changelog.js | 2 years ago | |
| conventional-recommended-bump.js | 2 years ago | |
| index.js | 2 years ago | |
| package.json | 2 years ago | |
| parser-opts.js | 2 years ago | |
| writer-opts.js | 2 years ago | |
README.md
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": "https://myBugTracker.com/{{prefix}}{{id}}"
})
or json config like that:
{
"options": {
"preset": {
"name": "conventionalchangelog",
"issuePrefixes": ["TEST-"],
"issueUrlFormat": "https://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.