First of all, thanks for your interest in helping out! 😃
Before you submit an issue, please search the issue tracker, maybe an issue for your problem already exists and the discussion might inform you of workarounds readily available.
We want to fix all the issues as soon as possible and a minimal reproduction scenario allows us to quickly confirm a bug (or point out a coding problem) as well as confirm that we are fixing the right problem.
This project uses eslint
and prettier
to lint and format code. I would recommend that you use vscode
for this project because the repo already contains the extension settings for autofixing linting errors and formatting code on save. So, make sure to download the recommended workspace extensions in vscode after cloning the repo.
- Fork the repo
- Clone your fork
- Download the recommended workspace extensions in vscode
- Create a new branch (
git checkout -b my-fix-branch master
) - Install packages via
npm i
- Make changes
- Build the library
npm run build
- Run tests
npm run test
- Commit your changes using a descriptive commit message
- Push your branch to GitHub
git push origin my-fix-branch
- Start a pull request from GitHub
That's it! 🎉 Thank you for your contribution! 😃
Check out this tutorial
Also, How to Contribute to an Open Source Project on GitHub for a more in depth (video) tutorial