Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 708 Bytes

CONTRIBUTING.md

File metadata and controls

19 lines (16 loc) · 708 Bytes

Publishing

  1. Canary release — commit to master, CI will do the rest, alternatively you may publish locally:

    $ yarn publish:canary
  2. Versioned release:

    $ yarn prepare:release [-- --yes --no-git-tag-version --no-push]

    This command will run lerna version to update versions and push to git with appropriate tag, tag will be picked up by CI and actual publish will happen (lerna publish).

  3. Manual publish — run publishing locally, it assumes you already prepared your release:

    $ yarn publish:fromgit

    Keep in mind that CI will fail because it will try to publish on top of your already published tags.