Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 659 Bytes

RELEASING.md

File metadata and controls

36 lines (28 loc) · 659 Bytes

Releasing

Make sure everything is ok

npm run prepush

No pending commits

git status

Bump version and create tag

npm version patch

Verification

Check everything looks as expected in the git log!

Push everything

push --progress --porcelain origin refs/heads/main:main --tags

Check github workflow

Build and Publish

Optionally: prepare next version

npm run bump-prepatch-version
git add package.json package-lock.json
git commit -m 'bump-prepatch-version';
git push