From f67d99c9833cce778da4fff0e8b150472d20e099 Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Sun, 6 May 2018 23:25:49 -0700 Subject: [PATCH] docs(setup): add type checker commands on setup guide --- _SETUP.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/_SETUP.md b/_SETUP.md index 5c820c44c..63395b889 100644 --- a/_SETUP.md +++ b/_SETUP.md @@ -10,7 +10,7 @@ That's all. ## Setup manually -Setup your local webpack repository +### Setup your local webpack repository ```bash git clone https://github.com/webpack/webpack.git @@ -21,8 +21,20 @@ 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: + +```bash +yarn type-lint +``` + +or incremental as you add JSDoc Annotations or make changes + +```bash +yarn type-lint --watch +```