-
Notifications
You must be signed in to change notification settings - Fork 811
Closed
Labels
Description
Description
conventional-changelog-cli
has the ability to pass in a json file with various configuration options that are passed to conventional-changelog-core
. This would be a convenient option for issue trackers and git repositories that don't follow the same standards as GitHub.
Here's an example configuration:
{
"changelogOpts": {
"preset": "angular"
},
"parserOpts": {
"issuePrefixes": ["custom-issue-prefix-"]
},
"writerOpts": {
"headerPartial": "{{version}} {{~#if date}} ({{date}})\n {{~/if}}",
"commitPartial": "* {{this.subject}} \n\n{{~!-- commit link --}} {{#if @root.linkReferences~}} \n ([{{hash}}]({{~@root.repoUrl}}/{{~@root.commit}}/{{hash}})){{~else}}{{~hash}}{{~/if}}"
}
}
patrickmichalina, lancecaraccioli, standy, christophehurpeau, floriangosse and 4 more