https://github.com/lerna/getting-started-example
This repo is a small example of using Lerna 6+.
https://github.com/lerna/getting-started-example
Last synced: about 1 year ago
JSON representation
This repo is a small example of using Lerna 6+.
- Host: GitHub
- URL: https://github.com/lerna/getting-started-example
- Owner: lerna
- Created: 2022-06-03T21:08:06.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-24T02:09:03.000Z (about 2 years ago)
- Last Synced: 2024-04-25T20:46:11.669Z (about 2 years ago)
- Language: TypeScript
- Homepage:
- Size: 1.61 MB
- Stars: 96
- Watchers: 8
- Forks: 154
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lerna Getting Started Example
This repo is a small example of using Lerna 5+.
Watch this [10-minute walkthrough](https://youtu.be/1oxFYphTS4Y) to see how new versions of Lerna work.
> Note: The video was recorded with Lerna 6. Some information within it may be outdated. See [the Getting Started docs](https://lerna.js.org/docs/getting-started#adding-lerna-to-an-existing-repo) for up-to-date instructions for the latest version of Lerna.
This repo contains three packages or projects:
- `header` (a library of React components)
- `footer` (a library of React components)
- `remixapp` (an app written using the Remix framework which depends on both `header` and `footer`)
```
packages/
header/
src/
...
package.json
rollup.config.json
jest.config.js
footer/
src/
...
package.json
rollup.config.json
jest.config.js
remixapp/
app/
...
public/
package.json
remix.config.js
package.json
```