Open
Description
Something I'm interested in from standard-version
: conventional-changelog#870
Hey,
I'm adding standard-version to our pipeline for internal app and I was wondering if there's an option to include every commit in CHANGELOG file for given release?
Like, having a config file:
// .versionrc.json
"type": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Fixes"},
{"type": "*", "section": "Others"}
]
would put every commit that is not feat or fix into Others group?