Created
October 19, 2021 04:30
-
-
Save victorbruce/763497643eea493c18a06def1cbe6532 to your computer and use it in GitHub Desktop.
a script to bump either the major, minor, or patch number
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"bump-patch": "npm version patch --no-git-tag-version && bundle exec fastlane bump", | |
"bump-minor": "npm version minor --no-git-tag-version && bundle exec fastlane bump", | |
"bump-major": "npm version major --no-git-tag-version && bundle exec fastlane bump" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment