diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-22 10:37:29 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-22 10:37:29 -0700 |
commit | efe856ed238e7a2be8d847c94ba8e0155b17ce9c (patch) | |
tree | 978ca6603c922947f16dbb603c9ec6e44ee0f46a | |
parent | 27d2104bfd297ac6e6e6ffe17ad12ad9dcd1bd3d (diff) |
Fix a couple of dev commands
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,13 +17,13 @@ After pulling down the code, set up dependencies: ```sh $> npm install -$> npx lerna bootstrap +$> npm run bootstrap ``` To run unit tests for all tracked lerna packages, run the following: ```sh -$> npx lerna test +$> npx lerna run test ``` Running Jest in watch mode for a specific project requires the use of `lerna exec`: |