Closed GMartigny closed 4 years ago
Hi,
I can't find a way to configure differently bump tasks by type (patch, minor, major).
For example, I don't need to create a tag for a bump:patch, or I could want to have a different commit message.
It could be done with multiple options on the GruntFile
bump: { options: { tagMessage: "Release of the version %VERSION%.", prereleaseName: "beta" }, patch: { options: { createTag: false, tagMessage: "Patch" } } }
Yes, I have a similar case in here.
I have to:
I think this could be done with multiple bump task types.
Just had a look at the code and grunt bump-only solves my problem completely. :)
grunt bump-only
Hi,
I can't find a way to configure differently bump tasks by type (patch, minor, major).
For example, I don't need to create a tag for a bump:patch, or I could want to have a different commit message.
It could be done with multiple options on the GruntFile