Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Latest commit

 

History

History
23 lines (17 loc) · 1.21 KB

CONTRIBUTING.md

File metadata and controls

23 lines (17 loc) · 1.21 KB

Contributing Guide

First, support is handled via the Mailing List. Ask your questions there.

When submitting issues on GitHub, please include as much detail as possible to make debugging quick and easy.

  • good - Your versions of Angular, JSData, etc, relevant console logs/error, code examples that revealed the issue
  • better - A plnkr, fiddle, or bin that demonstrates the issue
  • best - A Pull Request that fixes the issue, including test coverage for the issue and the fix

Github Issues.

Pull Requests

  1. Contribute to the issue that is the reason you'll be developing in the first place
  2. Fork js-data-asyncstorage
  3. git clone https://github.com/<you>/js-data-asyncstorage.git
  4. cd js-data-asyncstorage; npm install; bower install;
  5. You need to follow the instructions in src/index.js to be able to run the tests without react-native.
  6. grunt go (builds and starts a watch)
  7. (in another terminal) grunt karma:dev (runs the tests)
  8. Write your code, including relevant documentation and tests
  9. Submit a PR and we'll review