Thanks for contributing to this project! You should follow these steps:
You need to install yarn 1.x.x.
- Fork the project
- Clone the project locally
- Install the dependencies running in the project's root directory
yarn
- Make the changes making sure you follow conventional-commits when committing
- You can test them locally after running
yarn build
inside theexamples
folder or use yarn link to test the changes in another project as follows: a.cd
inside the package that you want to test b.yarn link
. Copy the package name that gets printed c. Go over to your project and runyarn link <PACKAGE_NAME>
d. To finish linking you have toyarn unlink <PACKAGE_NAME>
- Create a PR
In order to publish, if you have the necessary permissions, you should run one of the followings workflows:
- Publish
- Publish Beta
- Publish Alpha
This will determine the next version using conventional-commits, update the CHANGELOGs and publish to NPM the new version.