Thank you for contributing to @bigab/async-transform!
To report a bug, please visit GitHub Issues.
When filing a bug, it is helpful to include small examples using tools like JSBin or CodePen.
Search for previous tickets, if there is one add to that one rather than creating another.
When contributing, please include tests with new features or bug fixes in a feature branch until you're ready to submit the code for consideration; then push to the fork, and submit a pull request. More detailed steps are as follows:
- Navigate to your clone of the @bigab/async-transform repository -
cd /path/to/@bigab/async-transform
- Create a new feature branch -
git checkout -b some-fix
- Make some changes
- Update tests to accomodate your changes
- Run tests (
npm test
) and make sure they pass - Update the documentation if necessary
- Push your changes to your remote branch -
git push -u origin some-fix
- Submit a pull request! Navigate to Pull Requests and click the 'New Pull Request' button. Fill in some details about your potential patch including a meaningful title. When finished, press "Send pull request".