We welcome new contributors and contributions both large and small!
The development branch is main
, and this is the branch that all pull
requests should be made against.
To develop locally:
- Fork this repository to your own GitHub account and then clone it to your local device.
- Create a new branch:
git checkout -b MY_BRANCH_NAME
- Install yarn:
npm install -g yarn
- Install the dependencies with:
yarn
- Start developing and watch for code changes:
yarn dev
You can build the project with:
yarn build
# - or -
yarn prepublish
If you need to clean the project for any reason, use yarn clean
.