https://github.com/itsthatguy/lerna-rocks
https://github.com/itsthatguy/lerna-rocks
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/itsthatguy/lerna-rocks
- Owner: itsthatguy
- Created: 2018-12-11T22:00:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-12T16:12:35.000Z (over 7 years ago)
- Last Synced: 2025-03-06T05:42:07.974Z (over 1 year ago)
- Language: JavaScript
- Size: 72.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lerna-rocks mono repo
## Requirements
- node 9+
- clone this repo
## Do the following steps (to learn what not to do)
```shell
npm install
$(npm bin)/lerna clean
cd apps/app-1
# This next command should explain why not to use `npm install` in app directories
npm install
# but just incase...
cd ../..
npm start
# still doesn't work
# here's how to fix it
$(npm bin)/lerna bootstrap
npm start
# Let me know, once you've done this, and understand
```
## Setup
```shell
npm install
$(npm bin)/lerna bootstrap
```
## Running
```shell
npm start
```