https://github.com/adbayb/poc-monorepo
🧪 Monorepo example
https://github.com/adbayb/poc-monorepo
monorepo proof-of-concept
Last synced: 8 days ago
JSON representation
🧪 Monorepo example
- Host: GitHub
- URL: https://github.com/adbayb/poc-monorepo
- Owner: adbayb
- License: mit
- Created: 2020-12-29T08:29:27.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-05-31T16:19:59.000Z (17 days ago)
- Last Synced: 2025-06-01T04:48:09.543Z (17 days ago)
- Topics: monorepo, proof-of-concept
- Language: JavaScript
- Homepage:
- Size: 281 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
🧪 Monorepo
Monorepo explorations including task runners, versioning management, and package publishing
![]()
## 🚀 Quickstart
**1️⃣ Install**
```shell
pnpm install
```**2️⃣ Enjoy**
```shell
pnpm dev
```
## 👨💻 Commands
All main commands are listed below. For other less frequent commands, you can still check the root `package.json`:
| Name | Description |
| ------- | --------------------------------------------------------------------------------------------------- |
| `dev` | Watches for libraries changes in development mode |
| `build` | Builds all library-like packages in production mode |
| `start` | Runs start command in all packages (mainly for starting servers or CLI main command when available) |
| `clean` | Cleans all monorepo build artifacts |
| `check` | Analyses and lists all potential static errors across the monorepo |
| `fix` | Fixes all fixable monorepo errors (such as formatting issues, lint rules...) |
| `test` | Runs all tests across the monorepo |