-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ac0116
commit 19b6eca
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 [email protected]-beta.38 | ||
npm install -g [email protected] | ||
``` | ||
|
||
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. |