Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 810 Bytes

CONTRIBUTING.md

File metadata and controls

36 lines (26 loc) · 810 Bytes

Developer notes

Releasing

reactive-video (frontend)

yarn version:frontend patch|minor|major
yarn clean
yarn pack:frontend

# Now check that the output of `pack:frontend` looks ok, then publish
yarn publish:frontend

@reactive-video/builder

Note: If you released a new major of reactive-video frontend first, run this first (replace MAJORVERSION with the major semver of reactive-video):

(cd packages/builder && yarn add reactive-video@MAJORVERSION && git add package.json && git commit -m 'Upgrade builder reactive-video version')
yarn version:builder patch|minor|major
yarn clean
yarn pack:builder

# Now check that the output of `pack:builder` looks ok, then publish:
yarn publish:builder

After publish

git push --follow-tags