mirror of https://github.com/ColorlibHQ/gentelella
14 lines
472 B
JavaScript
14 lines
472 B
JavaScript
module.exports = {
|
|
release: {
|
|
options: {
|
|
insertType: "prepend",
|
|
template: "## Release v<%= package.version %>:\n\n{{> features}}{{> fixes}}\n\n",
|
|
partials: {
|
|
features: "#### Features:\n\n{{#if features}}{{#each features}}{{> feature}}{{/each}}{{else}}{{> empty}}{{/if}}\n",
|
|
fixes: "#### Bugfixes:\n\n{{#if fixes}}{{#each fixes}}{{> fix}}{{/each}}{{else}}{{> empty}}{{/if}}",
|
|
empty: " - (none)\n"
|
|
},
|
|
dest: "CHANGELOG.md"
|
|
}
|
|
}
|
|
}; |