Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 569 Bytes

CONTRIBUTING.md

File metadata and controls

49 lines (32 loc) · 569 Bytes

Contributing

Update docs

Run a local dev server and edit files in ./docs:

yarn run docs:dev

To publish the updated docs:

yarn run docs:publish

Publishing a new version

  1. Make sure you're on branch master before doing it

  2. Ensure that the code is formatted correctly

yarn run format
  1. Update the version
npm version [major | minor | patch]
  1. Build the code to be published
yarn run build
  1. Publish it
npm publish
  1. Push incremented version and tags to git
git push --follow-tags