From 19b6eca33e9fd9a3a232f2cc7c8715a9001e8941 Mon Sep 17 00:00:00 2001 From: Luke Brooker Date: Tue, 22 Aug 2017 11:32:55 +1000 Subject: [PATCH] Update Lerna instructions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 11906ab..c50bf5b 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,13 @@ the packages in `./packages`. If you're working on a feature in this repo, you'll need to set it up on your machine with Lerna, the utility that manages our monorepo. At the moment we're using a beta version of Lerna 2, since Lerna 1 doesn't actually work. The easiest way to get started is to install Lerna globally: ``` -npm install -g lerna@2.0.0-beta.38 +npm install -g lerna@2.0.0 ``` Once you have lerna installed, run: ``` -lerna bootstrap +lerna bootstrap --hoist ``` from the root of the repository. This will install all packages' dependencies, transpile them, and symlink any interdependent packages together.