Skip to content

Commit f67d99c

Browse files
committed
docs(setup): add type checker commands on setup guide
1 parent 4d00edc commit f67d99c

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

_SETUP.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ That's all.
1010

1111
## Setup manually
1212

13-
Setup your local webpack repository
13+
### Setup your local webpack repository
1414

1515
```bash
1616
git clone https://github.com/webpack/webpack.git
@@ -21,8 +21,20 @@ yarn link
2121
yarn link webpack
2222
```
2323

24-
To run the entire test suite use:
24+
### To run the entire test suite use:
2525

2626
```bash
2727
yarn test
2828
```
29+
30+
### To run the typechecker use:
31+
32+
```bash
33+
yarn type-lint
34+
```
35+
36+
or incremental as you add JSDoc Annotations or make changes
37+
38+
```bash
39+
yarn type-lint --watch
40+
```

0 commit comments

Comments
 (0)