Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 653 Bytes

release.md

File metadata and controls

33 lines (22 loc) · 653 Bytes

Release Guide

NOTE: The very first time you publish a scoped package you need to make sure that it's package.json contains the following:

"publishConfig": {
  "access": "public"
}

Using eslint, babel and lerna CLI, each release will lint, build and publish packages that have changed since the last release:

Prerelease:

yarn pre-release

Release:

yarn release

Graduate:

"Graduating" a package means bumping to the non-prerelease variant of a prerelease version eg. package-1@1.0.0-alpha.0 => package-1@0.1.0

yarn graduate