Contributions are welcome and are greatly appreciated! Every little bit helps, and credit will always be given.
After forking to your own github org, do the following steps to get started:
# clone your fork to your local machine
git clone https://github.com/BuiltonDev/javascript-sdk.git
# step into local repo
cd javascript-sdk
# install dependencies
npm install
# run packager for development
npm run devThis codebase adheres to the Airbnb Styleguide and is enforced using ESLint.
It is recommended that you install an eslint plugin for your editor of choice when working on this codebase, however you can always check to see if the source code is compliant by running:
npm run lintTests are present in the test folder. You should create tests for new functionality before submitting a pull request. We are using MochaJS. You can run them by running:
npm run testBefore you submit a pull request from your forked repo, check that it meets these guidelines:
- If the pull request adds functionality, the docs should be updated as part of the same PR.
- If the pull request adds functionality, code in the example app that demonstrates the new functionality should be updated as part of the same PR.
- If the pull request adds functionality, the PR description should include motivation and use cases for the feature.
- If the pull request fixes a bug, an explanation including what the bug was, and how to reproduce it should be included in the PR description.
- Please rebase and resolve all conflicts before submitting.