From 291064572d9039bd57f54c3581223015b374acfa Mon Sep 17 00:00:00 2001 From: Chen Shenyue Date: Tue, 18 Sep 2018 20:19:25 +0800 Subject: [PATCH] docs(contribution): fix the setup workflow #591 (#597) * docs: fix the setup workflow #591 * docs: change to npm script * docs: script change * docs: simplify script --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5c635b7302c..6b69f35554d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -33,7 +33,7 @@ In case you are suggesting a new feature, we will match your idea with our curre * `git clone && cd webpack-cli` ### Setup with npm -* Install the dependencies: `npm install` +* Install the dependencies and bootstrap the packages: `npm run bootstrap` * Run the tests with: `npm test` ### Setup with yarn @@ -41,7 +41,7 @@ In case you are suggesting a new feature, we will match your idea with our curre * Install the dependencies and link them ```bash -yarn install +yarn bootstrap yarn link yarn link webpack-cli ```