I like standard-version as it updates the changelog using git commits but for a project I'm working on versioning is managed by another command - and HAS to stay like this. Is there a way of just getting standard-version just to generate the new change log from commits (following commitlint standards) and not bump the version or create tags?
If you would like Standard Version to only update the changelog and do nothing else, then you can use the skip options provided in either the CLI or the package.json file to skip all the other lifecycle steps.
npx standard-version --skip.bump --skip.commit --skip.tag
{
"standard-version": {
"skip": {
"bump": true,
"commit": true,
"tag": true
}
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With