From 05dd6d45451a3dbe077e776610bef3db781d973e Mon Sep 17 00:00:00 2001 From: Sumedh Nimkarde Date: Thu, 2 Mar 2017 21:40:02 +0530 Subject: [PATCH] Mention cloning of repository in CONTRIBUTING.md (#391) [skip ci] --- CONTRIBUTING.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 131cf346f3..c065958bdf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,10 +6,14 @@ contributing, please read the ## Setup local env +> Install yarn beforehand: https://yarnpkg.com/en/docs/install + To start developing on Babylon you only need to install its dependencies: ```bash -npm install +git clone https://github.com/babel/babylon +cd babylon +yarn ``` ## Tests @@ -48,7 +52,7 @@ Add `"only": true` to its `options.json`: Then, run the tests using the same command as before: ```bash -$ npm run test-only +npm run test-only ``` ### Checking code coverage locally