- Fork this repository.
- Create a new branch:
git checkout -b my-new-branch
. - Make your changes and write unit tests for them in
__tests__
directory. Make sure they're all passing. - Commit your changes in a meaningful way:
git commit -m "Add some new feature"
. - Push the changes to the branch:
git push origin my-new-branch
. - Make a pull request.
To run and watch for changes on files under /src
directory:
npm start
To run the demo examples of the site:
cd site
npm start
To run and watch the tests:
npm run test:dev