@commits-with-character/conventional-changelog-preset
v5.1.1
Published
commits-with-character.org preset for conventional-changelog.
Maintainers
Readme
@commits-with-character/conventional-changelog-preset
An adapter you can use with tools such as release-it's Conventional Changelog plugin to provide the recommended bump, and update the changelog file.
It will convert Commits with Character style commit messages to a changelog. The Commits With Character prefixes are parsed into the following changelog categories:
~-> Patches.^-> Minor changes.!-> Major changes.
Using with release-it
npm:
npm install -D release-it @release-it/conventional-changelog @commits-with-character/conventional-changelog-presetpnpm:
pnpm install -D release-it @release-it/conventional-changelog @commits-with-character/conventional-changelog-preset// .release-it.json
{
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "@commits-with-character/preset",
},
"infile": "CHANGELOG.md",
"header": "# Changelog",
},
},
}