Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 470 Bytes

CONTRIBUTING.md

File metadata and controls

38 lines (27 loc) · 470 Bytes

Pull Requests

Please don't send pull requests for new features, open an issue to discuss.

Running tests

This repo uses Jest.

yarn test
# or
yarn test --watch

Developing the examples

First you have to link the lib.

# from the root
yarn build
yarn link

Then in one tab compile on file changes

yarn watch

And in another tab run the example

# in a new tab
cd examples/<whatever>
yarn link "@reach/router"
yarn start