Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 673 Bytes

ReleaseHowTo.md

File metadata and controls

20 lines (15 loc) · 673 Bytes

Release HowTo

Automatically bump version in package.json, build distributions, build esdoc with the latest distributions (for browser dev console debugging), set git tags, git add/ commit and push to remote.

Update to changelogs have to be done manually.

# wait for a green build on main

$ git checkout main
$ git pull
$ git add . && git reset --hard origin/main # ensure that local repo is in same state as origin
$ lerna run --stream test-ci # verify that the current state of the main branch is green
# Update and commit CHANGELOG'S manually, 'npx lerna-changelog' is your friend
$ lerna publish --concurrency 1 [major | minor | patch]