DEV Community

Discussion on: Automate NPM versioning

Collapse
 
puritanic profile image
Darkø Tasevski

This will work if you are working alone on the project, but once the more people start contributing, and you have several branches with their own commits and version changes. We had this problem at my office before and then decided to bump the project version only on prod releases instead on each merge/pull request.

Also, forgive for my nitpicking but running npm patch/minor/major every time you commit something is not automatization.