This project is open for contributions, all that is required is some preliminary understanding of react, git and typescript.
The steps to get started are as follows:
-
Clone the repo with:
git checkout -b {BRANCH_NAME}
-
Create a new branch for your feature with:
git checkout -b {BRANCH_NAME}
-
Install yarn and the project's dependencies with:
yarn
-
Run dev environment with:
yarn dev
- Commit a change in the corresponding format with:
git commit -m '{YOUR_MESSAGE}'
- Push the commit to your repo and create a Pull Request on Github
- New utils require creating a new document file (
.tsx
) in the/pages/
folder. - If you are creating a new component, testcases will be required for merge.
- If you only modify components, please run any existing tests with
yarn test-update
. - (Optional) Modifying
testRegex
in.jest.config.js
allows you to test only a single component. - Please check coverage locally before submit.