9 lines
226 B
Bash
9 lines
226 B
Bash
![]() |
#!/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
|