monorepo

star 97

Monorepo management (Nx, Turborepo, pnpm workspaces) — task orchestration, caching, code sharing. Use when setting up monorepo, optimizing builds, or managing multi-package projects.

TheBeardedBearSAS By TheBeardedBearSAS schedule Updated 4/17/2026

name: monorepo description: Monorepo management (Nx, Turborepo, pnpm workspaces) — task orchestration, caching, code sharing. Use when setting up monorepo, optimizing builds, or managing multi-package projects. context: fork triggers: files: ["/nx.json", "/turbo.json", "/pnpm-workspace.yaml", "/lerna.json"] keywords: ["monorepo", "nx", "turborepo", "pnpm workspaces", "lerna", "task orchestration", "build cache", "workspace", "packages"] auto_suggest: true

Monorepo — Nx, Turborepo, pnpm Workspaces

Monorepo moderne avec caching distribué, task orchestration.

Tools

Nx — Graph-based, plugins, enterprise
Turborepo — Simple, fast, Vercel
pnpm workspaces — Léger, fast
Lerna — Legacy (migrer)

Turborepo

{ "pipeline": {
  "build": { "dependsOn": ["^build"], "outputs": ["dist/**"] },
  "test": { "cache": true }
}}
pnpm turbo build                 # Cache
pnpm turbo test --filter=...@main

Nx

nx affected --target=build
nx graph

Code Sharing

monorepo/
├── packages/ (ui, utils, config)
├── apps/ (web, api, mobile)
import { Button } from '@monorepo/ui';

Caching

Local — Dev | Remote — Team (Vercel, Nx Cloud) | Distributed — CI

npx turbo login && npx turbo link  # Turborepo
npx nx connect-to-nx-cloud         # Nx

pnpm Workspaces

packages: ['packages/*', 'apps/*']

Best Practices

Atomic commits | Versioning (changesets) | CI (affected) | Shared configs (root)


Voir @.claude/skills/tooling/SKILL.md

Install via CLI
npx skills add https://github.com/TheBeardedBearSAS/claude-craft --skill monorepo
Repository Details
star Stars 97
call_split Forks 7
navigation Branch main
article Path SKILL.md
More from Creator
TheBeardedBearSAS
TheBeardedBearSAS Explore all skills →