Files
apollo/CONTRIBUTING.md
T
2019-10-21 13:15:59 +02:00

30 lines
286 B
Markdown

# Contributing
## Development setup
Install dependencies:
```
yarn install
cd tests/demo && yarn install
cd ../ssr && yarn install
```
Link the library to test it in your project:
```
yarn link
```
Build the library with watching:
```
yarn dev
```
Run tests:
```
yarn test
```