Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 681 Bytes

File metadata and controls

49 lines (35 loc) · 681 Bytes

Contribution Guide

Test

npm test
# or
yarn test

Build

npm run build
# or
yarn build

Run example

npm start
# or
yarn start

Release

npm run release
# or
yarn release

First Release

npm run release -- --first-release
# or
yarn release --first-release

This will tag a release without bumping the version.

When you are ready, push the git tag and run npm publish.

If you want to publish it as a public scoped package, run npm publish --access public the first time.

To know more about standard-version, read this →