Contributing
Thanks for contributing to rustwasm-loader.
Opening issuesβ
Found a bug? Open an issue. Reporting a problem, even a small one, is a real contribution and is appreciated.
Fixing bugsβ
Pull requests are welcome. Here is the workflow:
- Fork this repository, then clone it locally:
git clone https://github.com/yeskiy/rustwasm-loader
- Create a topic branch for your changes:
git checkout -b fix-for-that-thing
- Commit a failing test that demonstrates 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!"
- Push to your fork:
git push origin fix-for-that-thing
Adding new featuresβ
Planning a new feature? Open an issue first so we can design it together.