Create CONTRIBUTING.md

This commit is contained in:
Guillaume Chau 2019-10-21 13:15:59 +02:00 committed by GitHub
parent dc138f2396
commit 4d1526836c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

29
CONTRIBUTING.md Normal file
View File

@ -0,0 +1,29 @@
# 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
```