peach a19a732be8 commit message | há 2 anos atrás | |
---|---|---|
.. | ||
templates | há 2 anos atrás | |
CHANGELOG.md | há 2 anos atrás | |
LICENSE.md | há 2 anos atrás | |
README.md | há 2 anos atrás | |
add-bang-notes.js | há 2 anos atrás | |
conventional-changelog.js | há 2 anos atrás | |
conventional-recommended-bump.js | há 2 anos atrás | |
index.js | há 2 anos atrás | |
package.json | há 2 anos atrás | |
parser-opts.js | há 2 anos atrás | |
writer-opts.js | há 2 anos atrás |
A concrete implementation of the specification described at conventionalcommits.org for automated CHANGELOG generation and version management.
Use the Conventional Changelog CLI Quick Start with the -p conventionalcommits
option.
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.