DEV Community

Discussion on: Git commit message convention that you can follow!

Collapse
 
llanilek profile image
Neil Hickman • Edited

We actually developed a release system following conventional commits that actually analyse the type contained in commits since the last deployment. It would affect semver in different ways such as feat types would bump minor versions, fixes would bump patch versions and breaking changes would bump major versions. We also use commitlint in order to enforce the conventional commits standard.