'Is there a way to use standard-version just to update the change log

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?



Solution 1:[1]

If your other system only determines the new tag, but don't automatically create it for you, you can just skip bump as in the accepted answer and still get the heavy lifting from standard version with an imperative release like this:

npm run release -- --release-as 1.1.0

or

npx standard-version -- --release-as 1.1.0

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Jannie Theunissen