Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pdsuwwz/mono-repo-example
🪐 The Architecture of Monorepo System based on Pnpm, Lerna
https://github.com/pdsuwwz/mono-repo-example
architechture components eslint jest lerna monorepo pnpm pnpm-workspace yarn
Last synced: about 1 month ago
JSON representation
🪐 The Architecture of Monorepo System based on Pnpm, Lerna
- Host: GitHub
- URL: https://github.com/pdsuwwz/mono-repo-example
- Owner: pdsuwwz
- License: mit
- Created: 2021-05-25T03:57:10.000Z (over 3 years ago)
- Default Branch: pnpm
- Last Pushed: 2023-01-05T10:21:29.000Z (about 2 years ago)
- Last Synced: 2024-11-03T13:54:37.396Z (3 months ago)
- Topics: architechture, components, eslint, jest, lerna, monorepo, pnpm, pnpm-workspace, yarn
- Language: JavaScript
- Homepage:
- Size: 246 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mono-repo-example
🪐 The Architecture of Monorepo System based on Pnpm, Lerna## Install
```bash
pnpm install
```## Run app
```bash
node .
```## Tests with Lerna
```bash
pnpm test
```## Lint
```bash
pnpm lint
```## Update Version
```bash
pnpm update:version
```## Update Dependencies
```bash
pnpm up --recursive --latest
```## Install External Dependencies
```bash
pnpm add xxx -W
```