Thanks for considering contributing to Pile!
If you find a bug, please feel free to open an issue.
Here’s a quick guide:
- Fork this repository and then clone it locally:
git clone https://github.com/udarajay/pile
- Create a topic branch for your changes:
git checkout -b fix-for-that-thing
- Commit a failing test for the bug:
git commit -am "Adds a failing test to demonstrate that thing"
- Commit a fix that makes the test pass:
git commit -am "Adds a fix for that thing!"
- Run the tests:
npm test
- If everything looks good, push to your fork:
git push origin fix-for-that-thing
Thinking of adding a new feature? Open an issue and let’s design it together.