Skip to content

Commit

Permalink
add bump script
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed Aug 9, 2021
1 parent a4ee07c commit 0cf593b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .task/bump.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# bump all workspace package versions as a new prerelease
NEW_VERSION=$(npm version prerelease --workspaces --git-tag-version | tail -1);

# add each updated package.json, because npm fails to
git add "packages/core/package.json";
git add "packages/react/package.json";
git add "packages/stringify/package.json";

# commit the new version
git commit -m "$NEW_VERSION";

# create a new tag for the new version
git tag "$NEW_VERSION";

# push the new version and new tag
git push && git push --tags;

0 comments on commit 0cf593b

Please sign in to comment.