Address feedback

This commit is contained in:
Leonid Logvinov
2017-12-19 18:03:44 +01:00
parent de6fe25751
commit ecc6cb2b7c
4 changed files with 76 additions and 36 deletions

View File

@@ -19,22 +19,32 @@ We strongly encourage our community members to help us make improvements and to
[CONTRIBUTING.md](../../CONTRIBUTING.md)
## Install Dependencies
### Install Dependencies
If you don't have yarn workspaces enabled - enable them:
`yarn config set workspaces-experimental true`
```bash
yarn config set workspaces-experimental true
```
Then install dependencies
`yarn install`
```bash
yarn install
```
## Build
### Build
`yarn build`
```bash
yarn build
```
## Lint
### Lint
`yarn lint`
```bash
yarn lint
```
## Run Tests
### Run Tests
`yarn test`
```bash
yarn test
```