Skip to content

Commit

Permalink
add other commands to guide
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLarkInn committed May 7, 2018
1 parent f67d99c commit 5bdeaa5
Showing 1 changed file with 45 additions and 3 deletions.
48 changes: 45 additions & 3 deletions _SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,61 @@ yarn link
yarn link webpack
```

### To run the entire test suite use:
### To run the entire test suite use

```bash
yarn test
```

### To run the typechecker use:
### To run only intergration tests use

```bash
yarn test:integration
```

or in watch mode

```bash
yarn test:integration --watch
```

### To run only unit tests use

```bash
yarn test:unit
```

or in watch mode

```bash
yarn test:unit --watch
```

### To run code formatter (prettier) run

```bash
yarn pretty
```

### To run all linters use

This performs linting on:

* eslint (code-lint script)
* schema (schema-lint script)
* types (type-lint script)

```bash
yarn lint
```

### To run only the typechecker use

```bash
yarn type-lint
```

or incremental as you add JSDoc Annotations or make changes
or incremental (in watch mode)

```bash
yarn type-lint --watch
Expand Down

0 comments on commit 5bdeaa5

Please sign in to comment.