Skip to main content

Contributing

Thanks for considering contributing to rustwasm-loader!

Opening issuesโ€‹

If you find a bug, please feel free to open an issue.

If you're taking the time to mention a problem, even a seemingly minor one, it is greatly appreciated, and a totally valid contribution to this project. Thank you!

Fixing bugsโ€‹

We love pull requests. Hereโ€™s a quick guide:

  1. Fork this repository and then clone it locally:
git clone https://github.com/yeskiy/rustwasm-loader
  1. Create a topic branch for your changes:
git checkout -b fix-for-that-thing
  1. Commit a failing test for the bug:
git commit -am "Adds a failing test to demonstrate that thing"
  1. Commit a fix that makes the test pass:
git commit -am "Adds a fix for that thing!"
  1. If everything looks good, push to your fork:
git push origin fix-for-that-thing
  1. Submit a pull request.

  2. Enjoy being the wonderful person you are

Adding new featuresโ€‹

Thinking of adding a new feature? Cool! Open an issue and letโ€™s design it together.