https://github.com/yowainwright/learn-lerna
This repository is being updated to learn Lerna
https://github.com/yowainwright/learn-lerna
Last synced: 15 days ago
JSON representation
This repository is being updated to learn Lerna
- Host: GitHub
- URL: https://github.com/yowainwright/learn-lerna
- Owner: yowainwright
- License: mit
- Created: 2017-12-29T08:26:12.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-04-20T21:53:33.000Z (about 6 years ago)
- Last Synced: 2025-02-21T14:31:25.245Z (over 1 year ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Learn Lerna
This repository is [Lerna](https://github.com/lerna/lerna#getting-started) demo for ensuring that I understand Lerna. Lerna provides an easier way to manage mulitple packages within a parent repository.
For this repository, I followed a tutorial by [Reggi](https://github.com/reggi), [here](https://github.com/reggi/lerna-tutorial)
**Below is the output of following the tutorial:**
```txt
├── LICENSE
├── README.md
├── lerna.json
├── package.json
└── packages
├── alpha
│ ├── index.js
│ └── package.json
├── beta
│ ├── index.js
│ └── package.json
└── usage
├── index.js
├── node_modules
│ ├── alpha -> ../../alpha
│ └── beta -> ../../beta
└── package.json
```