8 lines
226 B
Bash
Executable file
8 lines
226 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Removes all changesets from provided release branch and bumps the version
|
|
|
|
set -e
|
|
|
|
git diff --name-only origin/"$1" .changeset/ | xargs git rm --
|
|
npm version preminor --preid dev --git-tag-version false
|