Skip to main content

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:

  1. Fork this repository, 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 that demonstrates 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. Push to your fork:
git push origin fix-for-that-thing
  1. Open a pull request.

Adding new features​

Planning a new feature? Open an issue first so we can design it together.