Skip to content

Instantly share code, notes, and snippets.

@victorbruce
Created October 19, 2021 04:30
Show Gist options
  • Save victorbruce/763497643eea493c18a06def1cbe6532 to your computer and use it in GitHub Desktop.
Save victorbruce/763497643eea493c18a06def1cbe6532 to your computer and use it in GitHub Desktop.
a script to bump either the major, minor, or patch number
"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