Thank you for your interest in contributing to this repo! All contributions (even small ones) are welcome. You can contribute either by submitting a new issue for a bug you encountered, or by fixing a reported bug.
To report a bug in this package, fill in a new issue. Please provide all the details needed to reproduce your bug, including your versions Node.js and this package. A minimal failing test case is usually a good way to report a bug.
- Fork this repository.
- Clone your fork locally.
- Run
npm install
to install development dependencies. - Checkout to a new branch named appropriately. This name should reflect the bug you tackle, eg. if you had fixed the issue "Improve documentation", you could have chosen
improve-docs
. - Make your changes!
- If you introduced new features, don’t forget to add test cases for them.
- Make sure all tests run successfully (
npm run test
) and that your code complies to the style guide (npm run lint
). - Submit a pull request.