Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 616 Bytes

CONTRIBUTING.md

File metadata and controls

13 lines (9 loc) · 616 Bytes

Make sure that what you trying to fix really a bug, or if adding feature that is good way to solve your task.

  1. Fork the repo and install stuff:
  • Run yarn install in root folder
  • Run yarn demo for install demo deps, compile library and run the demo project
  1. Write code! Add some feature or fix bug. Use yarn commit command, it's enforce good practices for commits.

  2. Check that all tests passed(unit and e2e) and add tests for your code. You can use yarn test --watch for run tests in watch mode

  3. Update readme and example (if needed)

  4. Make commit and Pull Request, review, approval and merge.