[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-turborepo":3,"mdc--8t0270-key":35,"related-org-openai-turborepo":7085,"related-repo-openai-turborepo":7292},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"turborepo","optimize monorepo builds with Turborepo","Turborepo expert guidance. Use when setting up or optimizing monorepo builds, configuring task caching, remote caching, parallel execution, or the --affected flag for incremental CI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,21],{"name":13,"slug":14,"type":15},"Performance","performance","tag",{"name":17,"slug":18,"type":15},"Vercel","vercel",{"name":20,"slug":4,"type":15},"Turborepo",{"name":22,"slug":23,"type":15},"CI\u002FCD","ci-cd",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:40:38.125388",null,465,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fvercel\u002Fskills\u002Fturborepo","---\nname: turborepo\ndescription: Turborepo expert guidance. Use when setting up or optimizing monorepo builds, configuring task caching, remote caching, parallel execution, or the --affected flag for incremental CI.\nmetadata:\n  priority: 5\n  docs:\n    - \"https:\u002F\u002Fturborepo.dev\u002Fdocs\"\n  sitemap: \"https:\u002F\u002Fturborepo.dev\u002Fsitemap.xml\"\n  pathPatterns: \n    - 'turbo.json'\n    - 'turbo\u002F**'\n  bashPatterns: \n    - '\\bturbo\\s+(run|build|test|lint|dev)\\b'\n    - '\\bnpx\\s+turbo\\b'\n    - '\\bbunx\\s+turbo\\b'\n---\n\n# Turborepo\n\nYou are an expert in Turborepo v2.8 — \"the build system for agentic coding\" — a high-performance build system for JavaScript\u002FTypeScript monorepos, built by Vercel with a Rust-powered core.\n\n## Key Features\n\n- **Task caching**: Content-aware hashing — only rebuilds when files actually change\n- **Remote caching**: Share build caches across machines and CI via Vercel\n- **Parallel execution**: Uses all CPU cores automatically\n- **Incremental builds**: `--affected` flag runs only changed packages + dependents\n- **Pruned subsets**: Generate minimal monorepo for deploying a single app\n- **Dependency graph awareness**: Understands package relationships\n- **Git worktree cache sharing**: Automatically shares local cache across worktrees (2.8+)\n- **Devtools**: Visual package and task graph explorer via `turbo devtools` (2.8+)\n- **Composable configuration**: Extend `turbo.json` from any package, not just root (2.7+)\n- **AI-enabled docs**: `turbo docs` returns markdown responses optimized for AI agents (2.8+)\n\n## Setup\n\n```bash\nnpx create-turbo@latest\n# or add to existing monorepo:\nnpm install turbo --save-dev\n# upgrade existing Turborepo:\nnpx @turbo\u002Fcodemod migrate\n```\n\n## turbo.json Task Pipeline\n\nThe `turbo.json` file defines your task dependency graph. Here are comprehensive examples:\n\n### Basic pipeline\n\n```json\n{\n  \"$schema\": \"https:\u002F\u002Fturborepo.dev\u002Fschema.json\",\n  \"tasks\": {\n    \"build\": {\n      \"description\": \"Compile TypeScript and bundle the application\",\n      \"dependsOn\": [\"^build\"],\n      \"outputs\": [\".next\u002F**\", \"dist\u002F**\"]\n    },\n    \"test\": {\n      \"description\": \"Run the test suite\",\n      \"dependsOn\": [\"build\"]\n    },\n    \"lint\": {\n      \"description\": \"Lint source files\"\n    },\n    \"dev\": {\n      \"cache\": false,\n      \"persistent\": true\n    }\n  }\n}\n```\n\n### Advanced pipeline with environment variables and inputs\n\n```json\n{\n  \"$schema\": \"https:\u002F\u002Fturborepo.dev\u002Fschema.json\",\n  \"globalDependencies\": [\".env\"],\n  \"globalEnv\": [\"CI\", \"NODE_ENV\"],\n  \"tasks\": {\n    \"build\": {\n      \"dependsOn\": [\"^build\"],\n      \"outputs\": [\".next\u002F**\", \"dist\u002F**\"],\n      \"env\": [\"DATABASE_URL\", \"NEXT_PUBLIC_API_URL\"],\n      \"inputs\": [\"src\u002F**\", \"package.json\", \"tsconfig.json\"]\n    },\n    \"test\": {\n      \"dependsOn\": [\"build\"],\n      \"outputs\": [\"coverage\u002F**\"],\n      \"env\": [\"TEST_DATABASE_URL\"]\n    },\n    \"test:unit\": {\n      \"dependsOn\": [],\n      \"outputs\": [\"coverage\u002F**\"]\n    },\n    \"lint\": {\n      \"inputs\": [\"src\u002F**\", \".eslintrc.*\"]\n    },\n    \"typecheck\": {\n      \"dependsOn\": [\"^build\"],\n      \"inputs\": [\"src\u002F**\", \"tsconfig.json\"]\n    },\n    \"db:generate\": {\n      \"cache\": false\n    },\n    \"dev\": {\n      \"cache\": false,\n      \"persistent\": true\n    },\n    \"clean\": {\n      \"cache\": false\n    }\n  }\n}\n```\n\n### Key Configuration\n\n- `dependsOn: [\"^build\"]` — Run `build` in dependencies first (`^` = topological)\n- `dependsOn: [\"build\"]` — Run `build` in the same package first (no `^`)\n- `outputs` — Files to cache (build artifacts)\n- `inputs` — Files that affect the task hash (default: all non-gitignored files)\n- `env` — Environment variables that affect the task hash\n- `cache: false` — Skip caching (for dev servers, codegen)\n- `persistent: true` — Long-running tasks (dev servers)\n- `globalDependencies` — Files that invalidate all task caches when changed\n- `globalEnv` — Env vars that invalidate all task caches when changed\n\n## Workspace Filtering\n\nRun tasks in specific packages or subsets of your monorepo:\n\n```bash\n# Single package\nturbo build --filter=web\n\n# Package and its dependencies\nturbo build --filter=web...\n\n# Package and its dependents (what depends on it)\nturbo build --filter=...ui\n\n# Multiple packages\nturbo build --filter=web --filter=api\n\n# By directory\nturbo build --filter=.\u002Fapps\u002F*\n\n# Packages that changed since main\nturbo build --filter=[main]\n\n# Combine: changed packages and their dependents\nturbo build --filter=...[main]\n\n# Exclude a package\nturbo build --filter=!docs\n\n# Packages matching a pattern\nturbo build --filter=@myorg\u002F*\n```\n\n### Filter syntax reference\n\n| Pattern | Meaning |\n|---------|---------|\n| `web` | Only the `web` package |\n| `web...` | `web` and all its dependencies |\n| `...web` | `web` and all its dependents |\n| `...web...` | `web`, its dependencies, and its dependents |\n| `.\u002Fapps\u002F*` | All packages in the `apps\u002F` directory |\n| `[main]` | Packages changed since `main` branch |\n| `{.\u002Fapps\u002Fweb}[main]` | `web` only if it changed since `main` |\n| `!docs` | Exclude the `docs` package |\n\n## CI Matrix Strategies\n\n### GitHub Actions — parallel jobs per package\n\n```yaml\nname: CI\non: [push, pull_request]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions\u002Fcheckout@v4\n        with:\n          fetch-depth: 0 # Required for --affected\n      - uses: actions\u002Fsetup-node@v4\n        with:\n          node-version: 22\n      - run: npm ci\n      - run: turbo build test lint --affected\n        env:\n          TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}\n          TURBO_TEAM: ${{ vars.TURBO_TEAM }}\n\n  deploy-web:\n    needs: build\n    if: github.ref == 'refs\u002Fheads\u002Fmain'\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions\u002Fcheckout@v4\n      - run: npm ci\n      - run: turbo build --filter=web\n        env:\n          TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}\n          TURBO_TEAM: ${{ vars.TURBO_TEAM }}\n```\n\n### Dynamic matrix from workspace list\n\n```yaml\njobs:\n  detect:\n    runs-on: ubuntu-latest\n    outputs:\n      packages: ${{ steps.list.outputs.packages }}\n    steps:\n      - uses: actions\u002Fcheckout@v4\n      - id: list\n        run: |\n          PACKAGES=$(turbo ls --affected --output=json | jq -c '[.[].name]')\n          echo \"packages=$PACKAGES\" >> \"$GITHUB_OUTPUT\"\n\n  test:\n    needs: detect\n    if: needs.detect.outputs.packages != '[]'\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        package: ${{ fromJson(needs.detect.outputs.packages) }}\n    steps:\n      - uses: actions\u002Fcheckout@v4\n      - run: npm ci\n      - run: turbo test --filter=${{ matrix.package }}\n```\n\n### Remote caching in CI\n\n```bash\n# Set in CI environment\nTURBO_TOKEN=your-vercel-token\nTURBO_TEAM=your-vercel-team\n\n# Builds automatically use remote cache\nturbo build\n```\n\n## Watch Mode\n\nRun tasks in watch mode for development — re-executes when source files change:\n\n```bash\n# Watch a specific task\nturbo watch test\n\n# Watch with a filter\nturbo watch test --filter=web\n\n# Watch multiple tasks\nturbo watch test lint\n```\n\nWatch mode respects the task graph — if `test` depends on `build`, changing a source file re-runs `build` first, then `test`.\n\n### Persistent tasks vs watch\n\n- `persistent: true` in turbo.json: The task itself is long-running (e.g., `next dev`). Turbo starts it and keeps it alive.\n- `turbo watch`: Turbo re-invokes the task on file changes. Use for tasks that run and exit (e.g., `vitest run`, `tsc --noEmit`).\n\n## Boundary Rules\n\nEnforce architectural constraints across your monorepo with `boundaries` in turbo.json:\n\n```json\n{\n  \"boundaries\": {\n    \"tags\": {\n      \"apps\u002F*\": [\"app\"],\n      \"packages\u002Fui\": [\"shared\", \"ui\"],\n      \"packages\u002Futils\": [\"shared\"],\n      \"packages\u002Fconfig\": [\"config\"]\n    },\n    \"rules\": [\n      {\n        \"from\": [\"app\"],\n        \"allow\": [\"shared\"]\n      },\n      {\n        \"from\": [\"shared\"],\n        \"deny\": [\"app\"]\n      }\n    ]\n  }\n}\n```\n\nThis enforces:\n- Apps can import shared packages\n- Shared packages cannot import from apps\n- Violations produce build-time errors with `turbo boundaries`\n\n```bash\n# Check boundary compliance\nturbo boundaries\n\n# Add to your pipeline\n{\n  \"tasks\": {\n    \"check\": {\n      \"dependsOn\": [\"lint\", \"typecheck\", \"boundaries\"]\n    },\n    \"boundaries\": {}\n  }\n}\n```\n\n## Graph Visualization\n\nInspect your task dependency graph:\n\n```bash\n# Print graph to terminal\nturbo build --graph\n\n# Output as DOT format (Graphviz)\nturbo build --graph=graph.dot\n\n# Output as JSON\nturbo build --graph=graph.json\n\n# Open interactive graph in browser\nturbo build --graph=graph.html\n```\n\n### Dry run — see what would execute\n\n```bash\n# Show tasks that would run without executing them\nturbo build --dry-run\n\n# JSON output for programmatic use\nturbo build --dry-run=json\n```\n\nThe dry run output shows:\n- Each task that would execute\n- Cache status (HIT or MISS)\n- Dependencies and dependents\n- File hash used for caching\n\n## Devtools & Docs (2.8+)\n\n```bash\n# Visual package\u002Ftask graph explorer (hot-reloads on changes)\nturbo devtools\n\n# Search Turborepo docs from the terminal (returns agent-friendly markdown)\nturbo docs\n\n# Upgrade to latest Turborepo\nnpx @turbo\u002Fcodemod migrate\n```\n\n> **Note**: `turbo docs` output is optimized for AI coding agents — markdown format preserves context windows. The docs site also includes sample prompts for common tasks you can copy directly into your agent.\n\n## Composable Configuration (2.7+)\n\nPackage configs can now extend from any workspace package, not just the root:\n\n```json\n\u002F\u002F packages\u002Fui\u002Fturbo.json\n{\n  \"extends\": [\"@myorg\u002Fconfig\"],\n  \"tasks\": {\n    \"build\": {\n      \"outputs\": [\"dist\u002F**\"]\n    }\n  }\n}\n```\n\n## Common Commands\n\n```bash\n# Run build across all packages\nturbo build\n\n# Run only affected packages (changed since main branch)\nturbo build --affected\n\n# Run specific tasks in specific packages\nturbo build --filter=web\n\n# Run with remote caching\nturbo build --remote-cache\n\n# Prune monorepo for a single app deployment\nturbo prune web --docker\n\n# List all packages\nturbo ls\n\n# List affected packages\nturbo ls --affected\n```\n\n## Remote Caching\n\n```bash\n# Login to Vercel for remote caching\nturbo login\n\n# Link to a Vercel team\nturbo link\n\n# Now builds share cache across all machines\nturbo build  # Cache hits from CI, teammates, etc.\n```\n\n## Monorepo Structure\n\n```\nmy-monorepo\u002F\n├── turbo.json\n├── package.json\n├── apps\u002F\n│   ├── web\u002F           # Next.js app\n│   │   └── package.json\n│   ├── api\u002F           # Backend service\n│   │   └── package.json\n│   └── docs\u002F          # Documentation site\n│       └── package.json\n├── packages\u002F\n│   ├── ui\u002F            # Shared component library\n│   │   └── package.json\n│   ├── config\u002F        # Shared configs (eslint, tsconfig)\n│   │   └── package.json\n│   └── utils\u002F         # Shared utilities\n│       └── package.json\n└── node_modules\u002F\n```\n\n## --affected Flag\n\nThe most important optimization for CI pipelines:\n\n```bash\n# Only build\u002Ftest packages that changed since main\nturbo build test lint --affected\n```\n\nThis performs intelligent graph traversal:\n1. Identifies changed files since the base branch\n2. Maps changes to affected packages\n3. Includes all dependent packages (transitively)\n4. Runs tasks only for the affected subgraph\n\n## Microfrontends & Multi-App Composition\n\nTurborepo is the recommended orchestration layer for Vercel's Microfrontends architecture — composing multiple independently-deployed apps behind a single URL.\n\n### Monorepo Structure for Microfrontends\n\n```\nmy-platform\u002F\n├── turbo.json\n├── package.json\n├── apps\u002F\n│   ├── shell\u002F          # Layout \u002F shell app (owns top-level routing)\n│   ├── dashboard\u002F      # Micro-app: dashboard features\n│   ├── settings\u002F       # Micro-app: settings features\n│   └── marketing\u002F      # Micro-app: public marketing site\n└── packages\u002F\n    ├── ui\u002F             # Shared component library\n    ├── auth\u002F           # Shared auth utilities\n    └── config\u002F         # Shared tsconfig, eslint\n```\n\n### Independent Deploys\n\nEach micro-app is a separate Vercel project with its own build and deploy lifecycle:\n\n```bash\n# Deploy only the dashboard micro-app\nturbo build --filter=dashboard\n\n# Deploy all micro-apps in parallel\nturbo build --filter=.\u002Fapps\u002F*\n\n# Deploy only micro-apps that changed since main\nturbo build --filter=.\u002Fapps\u002F*...[main]\n```\n\n### Shared Packages Across Micro-Apps\n\nUse Turborepo's dependency graph to share code without coupling deploys:\n\n```json\n{\n  \"tasks\": {\n    \"build\": {\n      \"dependsOn\": [\"^build\"],\n      \"outputs\": [\".next\u002F**\", \"dist\u002F**\"]\n    }\n  }\n}\n```\n\nShared packages (`ui`, `auth`, `config`) are built first via `^build`, then each micro-app builds against the latest shared code. Remote caching ensures shared package builds are never repeated across micro-app deploys.\n\n### Multi-Zone Patterns\n\nNext.js multi-zones let each micro-app own a URL path prefix while sharing a single domain:\n\n```ts\n\u002F\u002F apps\u002Fshell\u002Fnext.config.ts\nimport type { NextConfig } from 'next'\n\nconst nextConfig: NextConfig = {\n  async rewrites() {\n    return [\n      { source: '\u002Fdashboard\u002F:path*', destination: 'https:\u002F\u002Fdashboard.example.com\u002Fdashboard\u002F:path*' },\n      { source: '\u002Fsettings\u002F:path*', destination: 'https:\u002F\u002Fsettings.example.com\u002Fsettings\u002F:path*' },\n    ]\n  },\n}\n\nexport default nextConfig\n```\n\nCombine with Turborepo boundary rules to enforce architectural isolation:\n\n```json\n{\n  \"boundaries\": {\n    \"tags\": {\n      \"apps\u002F*\": [\"micro-app\"],\n      \"packages\u002Fui\": [\"shared\"],\n      \"packages\u002Fauth\": [\"shared\"]\n    },\n    \"rules\": [\n      { \"from\": [\"micro-app\"], \"allow\": [\"shared\"] },\n      { \"from\": [\"shared\"], \"deny\": [\"micro-app\"] }\n    ]\n  }\n}\n```\n\n### When to Use Turborepo for Microfrontends\n\n| Scenario | Recommended? |\n|----------|-------------|\n| Multiple teams owning independent features | Yes — independent deploys + shared packages |\n| Single team, single app | No — standard Next.js is simpler |\n| Shared component library across apps | Yes — `packages\u002Fui` with boundary rules |\n| Gradual migration from monolith | Yes — extract features into micro-apps incrementally |\n| Need version-skew protection | Yes — isolated builds per micro-app |\n\n### Related Documentation\n\n- [Vercel Microfrontends](https:\u002F\u002Fvercel.com\u002Fdocs\u002Fmicrofrontends)\n- [Next.js Multi-Zones](https:\u002F\u002Fnextjs.org\u002Fdocs\u002Fapp\u002Fbuilding-your-application\u002Fdeploying\u002Fmulti-zones)\n\n## Bun Support & Lockfile Detection\n\nTurborepo 2.6+ has **stable Bun support** with granular lockfile analysis:\n\n- **Lockfile format**: Turborepo requires `bun.lock` (text format). If only `bun.lockb` (binary) is found, it errors with a prompt to generate a text lockfile. Generate with `bun install --save-text-lockfile`.\n- **Granular cache invalidation**: Turborepo parses `bun.lock` to detect which specific packages changed and only invalidates caches for affected tasks — not the entire monorepo.\n- **Pruning**: `turbo prune` works with Bun workspaces, generating a minimal lockfile for single-app deploys.\n- **Skip-builds detection**: On Vercel, monorepo workspace detection automatically skips unaffected projects when `bun.lock` changes don't touch a project's dependencies. Combined with `--affected`, only changed packages and their dependents rebuild.\n\n```bash\n# Ensure text lockfile for Turborepo compatibility\nbun install --save-text-lockfile\n\n# Run only affected packages (works with Bun lockfile detection)\nturbo build --affected\n```\n\n> **Known issue**: `turbo prune` with Bun 1.3+ may produce lockfiles with formatting differences that break `bun i --frozen-lockfile`. Track fixes in [turborepo#11007](https:\u002F\u002Fgithub.com\u002Fvercel\u002Fturborepo\u002Fissues\u002F11007).\n\n## Deploying to Vercel\n\nVercel auto-detects Turborepo and optimizes builds. Each app in `apps\u002F` can be a separate Vercel project with automatic dependency detection.\n\n## When to Use Turborepo\n\n| Scenario | Use Turborepo? |\n|----------|----------------|\n| Single Next.js app | No — Turbopack handles bundling |\n| Multiple apps sharing code | Yes — orchestrate builds |\n| Shared component library | Yes — manage dependencies |\n| CI taking too long | Yes — caching + affected |\n| Team sharing build artifacts | Yes — remote caching |\n| Enforcing architecture boundaries | Yes — boundary rules |\n| Complex multi-step CI pipelines | Yes — task graph + matrix |\n\n## Official Documentation\n\n- [Turborepo Documentation](https:\u002F\u002Fturborepo.dev\u002Frepo\u002Fdocs)\n- [Getting Started](https:\u002F\u002Fturborepo.dev\u002Frepo\u002Fdocs\u002Fgetting-started)\n- [Crafting Your Repository](https:\u002F\u002Fturborepo.dev\u002Frepo\u002Fdocs\u002Fcrafting-your-repository)\n- [Task Configuration](https:\u002F\u002Fturborepo.dev\u002Frepo\u002Fdocs\u002Freference\u002Fconfiguration)\n- [Filtering](https:\u002F\u002Fturborepo.dev\u002Frepo\u002Fdocs\u002Fcrafting-your-repository\u002Frunning-tasks#using-filters)\n- [GitHub: Turborepo](https:\u002F\u002Fgithub.com\u002Fvercel\u002Fturborepo)\n",{"data":36,"body":49},{"name":4,"description":6,"metadata":37},{"priority":38,"docs":39,"sitemap":41,"pathPatterns":42,"bashPatterns":45},5,[40],"https:\u002F\u002Fturborepo.dev\u002Fdocs","https:\u002F\u002Fturborepo.dev\u002Fsitemap.xml",[43,44],"turbo.json","turbo\u002F**",[46,47,48],"\\bturbo\\s+(run|build|test|lint|dev)\\b","\\bnpx\\s+turbo\\b","\\bbunx\\s+turbo\\b",{"type":50,"children":51},"root",[52,59,65,72,209,215,304,310,322,329,874,880,1979,1985,2110,2116,2121,2444,2450,2668,2674,2680,3172,3178,3513,3519,3596,3602,3607,3709,3742,3748,3796,3802,3815,4301,4306,4330,4519,4525,4530,4654,4660,4722,4727,4750,4756,4840,4860,4866,4871,5040,5046,5259,5265,5350,5356,5366,5372,5377,5416,5421,5445,5451,5456,5462,5471,5477,5482,5599,5605,5610,5785,5817,5823,5828,6130,6135,6534,6540,6634,6640,6665,6671,6683,6777,6839,6874,6880,6892,6898,7010,7016,7079],{"type":53,"tag":54,"props":55,"children":56},"element","h1",{"id":4},[57],{"type":58,"value":20},"text",{"type":53,"tag":60,"props":61,"children":62},"p",{},[63],{"type":58,"value":64},"You are an expert in Turborepo v2.8 — \"the build system for agentic coding\" — a high-performance build system for JavaScript\u002FTypeScript monorepos, built by Vercel with a Rust-powered core.",{"type":53,"tag":66,"props":67,"children":69},"h2",{"id":68},"key-features",[70],{"type":58,"value":71},"Key Features",{"type":53,"tag":73,"props":74,"children":75},"ul",{},[76,88,98,108,127,137,147,157,175,192],{"type":53,"tag":77,"props":78,"children":79},"li",{},[80,86],{"type":53,"tag":81,"props":82,"children":83},"strong",{},[84],{"type":58,"value":85},"Task caching",{"type":58,"value":87},": Content-aware hashing — only rebuilds when files actually change",{"type":53,"tag":77,"props":89,"children":90},{},[91,96],{"type":53,"tag":81,"props":92,"children":93},{},[94],{"type":58,"value":95},"Remote caching",{"type":58,"value":97},": Share build caches across machines and CI via Vercel",{"type":53,"tag":77,"props":99,"children":100},{},[101,106],{"type":53,"tag":81,"props":102,"children":103},{},[104],{"type":58,"value":105},"Parallel execution",{"type":58,"value":107},": Uses all CPU cores automatically",{"type":53,"tag":77,"props":109,"children":110},{},[111,116,118,125],{"type":53,"tag":81,"props":112,"children":113},{},[114],{"type":58,"value":115},"Incremental builds",{"type":58,"value":117},": ",{"type":53,"tag":119,"props":120,"children":122},"code",{"className":121},[],[123],{"type":58,"value":124},"--affected",{"type":58,"value":126}," flag runs only changed packages + dependents",{"type":53,"tag":77,"props":128,"children":129},{},[130,135],{"type":53,"tag":81,"props":131,"children":132},{},[133],{"type":58,"value":134},"Pruned subsets",{"type":58,"value":136},": Generate minimal monorepo for deploying a single app",{"type":53,"tag":77,"props":138,"children":139},{},[140,145],{"type":53,"tag":81,"props":141,"children":142},{},[143],{"type":58,"value":144},"Dependency graph awareness",{"type":58,"value":146},": Understands package relationships",{"type":53,"tag":77,"props":148,"children":149},{},[150,155],{"type":53,"tag":81,"props":151,"children":152},{},[153],{"type":58,"value":154},"Git worktree cache sharing",{"type":58,"value":156},": Automatically shares local cache across worktrees (2.8+)",{"type":53,"tag":77,"props":158,"children":159},{},[160,165,167,173],{"type":53,"tag":81,"props":161,"children":162},{},[163],{"type":58,"value":164},"Devtools",{"type":58,"value":166},": Visual package and task graph explorer via ",{"type":53,"tag":119,"props":168,"children":170},{"className":169},[],[171],{"type":58,"value":172},"turbo devtools",{"type":58,"value":174}," (2.8+)",{"type":53,"tag":77,"props":176,"children":177},{},[178,183,185,190],{"type":53,"tag":81,"props":179,"children":180},{},[181],{"type":58,"value":182},"Composable configuration",{"type":58,"value":184},": Extend ",{"type":53,"tag":119,"props":186,"children":188},{"className":187},[],[189],{"type":58,"value":43},{"type":58,"value":191}," from any package, not just root (2.7+)",{"type":53,"tag":77,"props":193,"children":194},{},[195,200,201,207],{"type":53,"tag":81,"props":196,"children":197},{},[198],{"type":58,"value":199},"AI-enabled docs",{"type":58,"value":117},{"type":53,"tag":119,"props":202,"children":204},{"className":203},[],[205],{"type":58,"value":206},"turbo docs",{"type":58,"value":208}," returns markdown responses optimized for AI agents (2.8+)",{"type":53,"tag":66,"props":210,"children":212},{"id":211},"setup",[213],{"type":58,"value":214},"Setup",{"type":53,"tag":216,"props":217,"children":222},"pre",{"className":218,"code":219,"language":220,"meta":221,"style":221},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx create-turbo@latest\n# or add to existing monorepo:\nnpm install turbo --save-dev\n# upgrade existing Turborepo:\nnpx @turbo\u002Fcodemod migrate\n","bash","",[223],{"type":53,"tag":119,"props":224,"children":225},{"__ignoreMap":221},[226,244,254,278,287],{"type":53,"tag":227,"props":228,"children":231},"span",{"class":229,"line":230},"line",1,[232,238],{"type":53,"tag":227,"props":233,"children":235},{"style":234},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[236],{"type":58,"value":237},"npx",{"type":53,"tag":227,"props":239,"children":241},{"style":240},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[242],{"type":58,"value":243}," create-turbo@latest\n",{"type":53,"tag":227,"props":245,"children":247},{"class":229,"line":246},2,[248],{"type":53,"tag":227,"props":249,"children":251},{"style":250},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[252],{"type":58,"value":253},"# or add to existing monorepo:\n",{"type":53,"tag":227,"props":255,"children":257},{"class":229,"line":256},3,[258,263,268,273],{"type":53,"tag":227,"props":259,"children":260},{"style":234},[261],{"type":58,"value":262},"npm",{"type":53,"tag":227,"props":264,"children":265},{"style":240},[266],{"type":58,"value":267}," install",{"type":53,"tag":227,"props":269,"children":270},{"style":240},[271],{"type":58,"value":272}," turbo",{"type":53,"tag":227,"props":274,"children":275},{"style":240},[276],{"type":58,"value":277}," --save-dev\n",{"type":53,"tag":227,"props":279,"children":281},{"class":229,"line":280},4,[282],{"type":53,"tag":227,"props":283,"children":284},{"style":250},[285],{"type":58,"value":286},"# upgrade existing Turborepo:\n",{"type":53,"tag":227,"props":288,"children":289},{"class":229,"line":38},[290,294,299],{"type":53,"tag":227,"props":291,"children":292},{"style":234},[293],{"type":58,"value":237},{"type":53,"tag":227,"props":295,"children":296},{"style":240},[297],{"type":58,"value":298}," @turbo\u002Fcodemod",{"type":53,"tag":227,"props":300,"children":301},{"style":240},[302],{"type":58,"value":303}," migrate\n",{"type":53,"tag":66,"props":305,"children":307},{"id":306},"turbojson-task-pipeline",[308],{"type":58,"value":309},"turbo.json Task Pipeline",{"type":53,"tag":60,"props":311,"children":312},{},[313,315,320],{"type":58,"value":314},"The ",{"type":53,"tag":119,"props":316,"children":318},{"className":317},[],[319],{"type":58,"value":43},{"type":58,"value":321}," file defines your task dependency graph. Here are comprehensive examples:",{"type":53,"tag":323,"props":324,"children":326},"h3",{"id":325},"basic-pipeline",[327],{"type":58,"value":328},"Basic pipeline",{"type":53,"tag":216,"props":330,"children":334},{"className":331,"code":332,"language":333,"meta":221,"style":221},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"$schema\": \"https:\u002F\u002Fturborepo.dev\u002Fschema.json\",\n  \"tasks\": {\n    \"build\": {\n      \"description\": \"Compile TypeScript and bundle the application\",\n      \"dependsOn\": [\"^build\"],\n      \"outputs\": [\".next\u002F**\", \"dist\u002F**\"]\n    },\n    \"test\": {\n      \"description\": \"Run the test suite\",\n      \"dependsOn\": [\"build\"]\n    },\n    \"lint\": {\n      \"description\": \"Lint source files\"\n    },\n    \"dev\": {\n      \"cache\": false,\n      \"persistent\": true\n    }\n  }\n}\n","json",[335],{"type":53,"tag":119,"props":336,"children":337},{"__ignoreMap":221},[338,347,390,415,440,479,523,584,593,618,655,695,703,728,762,770,795,821,847,856,865],{"type":53,"tag":227,"props":339,"children":340},{"class":229,"line":230},[341],{"type":53,"tag":227,"props":342,"children":344},{"style":343},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[345],{"type":58,"value":346},"{\n",{"type":53,"tag":227,"props":348,"children":349},{"class":229,"line":246},[350,355,361,366,371,376,381,385],{"type":53,"tag":227,"props":351,"children":352},{"style":343},[353],{"type":58,"value":354},"  \"",{"type":53,"tag":227,"props":356,"children":358},{"style":357},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[359],{"type":58,"value":360},"$schema",{"type":53,"tag":227,"props":362,"children":363},{"style":343},[364],{"type":58,"value":365},"\"",{"type":53,"tag":227,"props":367,"children":368},{"style":343},[369],{"type":58,"value":370},":",{"type":53,"tag":227,"props":372,"children":373},{"style":343},[374],{"type":58,"value":375}," \"",{"type":53,"tag":227,"props":377,"children":378},{"style":240},[379],{"type":58,"value":380},"https:\u002F\u002Fturborepo.dev\u002Fschema.json",{"type":53,"tag":227,"props":382,"children":383},{"style":343},[384],{"type":58,"value":365},{"type":53,"tag":227,"props":386,"children":387},{"style":343},[388],{"type":58,"value":389},",\n",{"type":53,"tag":227,"props":391,"children":392},{"class":229,"line":256},[393,397,402,406,410],{"type":53,"tag":227,"props":394,"children":395},{"style":343},[396],{"type":58,"value":354},{"type":53,"tag":227,"props":398,"children":399},{"style":357},[400],{"type":58,"value":401},"tasks",{"type":53,"tag":227,"props":403,"children":404},{"style":343},[405],{"type":58,"value":365},{"type":53,"tag":227,"props":407,"children":408},{"style":343},[409],{"type":58,"value":370},{"type":53,"tag":227,"props":411,"children":412},{"style":343},[413],{"type":58,"value":414}," {\n",{"type":53,"tag":227,"props":416,"children":417},{"class":229,"line":280},[418,423,428,432,436],{"type":53,"tag":227,"props":419,"children":420},{"style":343},[421],{"type":58,"value":422},"    \"",{"type":53,"tag":227,"props":424,"children":425},{"style":234},[426],{"type":58,"value":427},"build",{"type":53,"tag":227,"props":429,"children":430},{"style":343},[431],{"type":58,"value":365},{"type":53,"tag":227,"props":433,"children":434},{"style":343},[435],{"type":58,"value":370},{"type":53,"tag":227,"props":437,"children":438},{"style":343},[439],{"type":58,"value":414},{"type":53,"tag":227,"props":441,"children":442},{"class":229,"line":38},[443,448,454,458,462,466,471,475],{"type":53,"tag":227,"props":444,"children":445},{"style":343},[446],{"type":58,"value":447},"      \"",{"type":53,"tag":227,"props":449,"children":451},{"style":450},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[452],{"type":58,"value":453},"description",{"type":53,"tag":227,"props":455,"children":456},{"style":343},[457],{"type":58,"value":365},{"type":53,"tag":227,"props":459,"children":460},{"style":343},[461],{"type":58,"value":370},{"type":53,"tag":227,"props":463,"children":464},{"style":343},[465],{"type":58,"value":375},{"type":53,"tag":227,"props":467,"children":468},{"style":240},[469],{"type":58,"value":470},"Compile TypeScript and bundle the application",{"type":53,"tag":227,"props":472,"children":473},{"style":343},[474],{"type":58,"value":365},{"type":53,"tag":227,"props":476,"children":477},{"style":343},[478],{"type":58,"value":389},{"type":53,"tag":227,"props":480,"children":482},{"class":229,"line":481},6,[483,487,492,496,500,505,509,514,518],{"type":53,"tag":227,"props":484,"children":485},{"style":343},[486],{"type":58,"value":447},{"type":53,"tag":227,"props":488,"children":489},{"style":450},[490],{"type":58,"value":491},"dependsOn",{"type":53,"tag":227,"props":493,"children":494},{"style":343},[495],{"type":58,"value":365},{"type":53,"tag":227,"props":497,"children":498},{"style":343},[499],{"type":58,"value":370},{"type":53,"tag":227,"props":501,"children":502},{"style":343},[503],{"type":58,"value":504}," [",{"type":53,"tag":227,"props":506,"children":507},{"style":343},[508],{"type":58,"value":365},{"type":53,"tag":227,"props":510,"children":511},{"style":240},[512],{"type":58,"value":513},"^build",{"type":53,"tag":227,"props":515,"children":516},{"style":343},[517],{"type":58,"value":365},{"type":53,"tag":227,"props":519,"children":520},{"style":343},[521],{"type":58,"value":522},"],\n",{"type":53,"tag":227,"props":524,"children":526},{"class":229,"line":525},7,[527,531,536,540,544,548,552,557,561,566,570,575,579],{"type":53,"tag":227,"props":528,"children":529},{"style":343},[530],{"type":58,"value":447},{"type":53,"tag":227,"props":532,"children":533},{"style":450},[534],{"type":58,"value":535},"outputs",{"type":53,"tag":227,"props":537,"children":538},{"style":343},[539],{"type":58,"value":365},{"type":53,"tag":227,"props":541,"children":542},{"style":343},[543],{"type":58,"value":370},{"type":53,"tag":227,"props":545,"children":546},{"style":343},[547],{"type":58,"value":504},{"type":53,"tag":227,"props":549,"children":550},{"style":343},[551],{"type":58,"value":365},{"type":53,"tag":227,"props":553,"children":554},{"style":240},[555],{"type":58,"value":556},".next\u002F**",{"type":53,"tag":227,"props":558,"children":559},{"style":343},[560],{"type":58,"value":365},{"type":53,"tag":227,"props":562,"children":563},{"style":343},[564],{"type":58,"value":565},",",{"type":53,"tag":227,"props":567,"children":568},{"style":343},[569],{"type":58,"value":375},{"type":53,"tag":227,"props":571,"children":572},{"style":240},[573],{"type":58,"value":574},"dist\u002F**",{"type":53,"tag":227,"props":576,"children":577},{"style":343},[578],{"type":58,"value":365},{"type":53,"tag":227,"props":580,"children":581},{"style":343},[582],{"type":58,"value":583},"]\n",{"type":53,"tag":227,"props":585,"children":587},{"class":229,"line":586},8,[588],{"type":53,"tag":227,"props":589,"children":590},{"style":343},[591],{"type":58,"value":592},"    },\n",{"type":53,"tag":227,"props":594,"children":596},{"class":229,"line":595},9,[597,601,606,610,614],{"type":53,"tag":227,"props":598,"children":599},{"style":343},[600],{"type":58,"value":422},{"type":53,"tag":227,"props":602,"children":603},{"style":234},[604],{"type":58,"value":605},"test",{"type":53,"tag":227,"props":607,"children":608},{"style":343},[609],{"type":58,"value":365},{"type":53,"tag":227,"props":611,"children":612},{"style":343},[613],{"type":58,"value":370},{"type":53,"tag":227,"props":615,"children":616},{"style":343},[617],{"type":58,"value":414},{"type":53,"tag":227,"props":619,"children":621},{"class":229,"line":620},10,[622,626,630,634,638,642,647,651],{"type":53,"tag":227,"props":623,"children":624},{"style":343},[625],{"type":58,"value":447},{"type":53,"tag":227,"props":627,"children":628},{"style":450},[629],{"type":58,"value":453},{"type":53,"tag":227,"props":631,"children":632},{"style":343},[633],{"type":58,"value":365},{"type":53,"tag":227,"props":635,"children":636},{"style":343},[637],{"type":58,"value":370},{"type":53,"tag":227,"props":639,"children":640},{"style":343},[641],{"type":58,"value":375},{"type":53,"tag":227,"props":643,"children":644},{"style":240},[645],{"type":58,"value":646},"Run the test suite",{"type":53,"tag":227,"props":648,"children":649},{"style":343},[650],{"type":58,"value":365},{"type":53,"tag":227,"props":652,"children":653},{"style":343},[654],{"type":58,"value":389},{"type":53,"tag":227,"props":656,"children":658},{"class":229,"line":657},11,[659,663,667,671,675,679,683,687,691],{"type":53,"tag":227,"props":660,"children":661},{"style":343},[662],{"type":58,"value":447},{"type":53,"tag":227,"props":664,"children":665},{"style":450},[666],{"type":58,"value":491},{"type":53,"tag":227,"props":668,"children":669},{"style":343},[670],{"type":58,"value":365},{"type":53,"tag":227,"props":672,"children":673},{"style":343},[674],{"type":58,"value":370},{"type":53,"tag":227,"props":676,"children":677},{"style":343},[678],{"type":58,"value":504},{"type":53,"tag":227,"props":680,"children":681},{"style":343},[682],{"type":58,"value":365},{"type":53,"tag":227,"props":684,"children":685},{"style":240},[686],{"type":58,"value":427},{"type":53,"tag":227,"props":688,"children":689},{"style":343},[690],{"type":58,"value":365},{"type":53,"tag":227,"props":692,"children":693},{"style":343},[694],{"type":58,"value":583},{"type":53,"tag":227,"props":696,"children":698},{"class":229,"line":697},12,[699],{"type":53,"tag":227,"props":700,"children":701},{"style":343},[702],{"type":58,"value":592},{"type":53,"tag":227,"props":704,"children":706},{"class":229,"line":705},13,[707,711,716,720,724],{"type":53,"tag":227,"props":708,"children":709},{"style":343},[710],{"type":58,"value":422},{"type":53,"tag":227,"props":712,"children":713},{"style":234},[714],{"type":58,"value":715},"lint",{"type":53,"tag":227,"props":717,"children":718},{"style":343},[719],{"type":58,"value":365},{"type":53,"tag":227,"props":721,"children":722},{"style":343},[723],{"type":58,"value":370},{"type":53,"tag":227,"props":725,"children":726},{"style":343},[727],{"type":58,"value":414},{"type":53,"tag":227,"props":729,"children":731},{"class":229,"line":730},14,[732,736,740,744,748,752,757],{"type":53,"tag":227,"props":733,"children":734},{"style":343},[735],{"type":58,"value":447},{"type":53,"tag":227,"props":737,"children":738},{"style":450},[739],{"type":58,"value":453},{"type":53,"tag":227,"props":741,"children":742},{"style":343},[743],{"type":58,"value":365},{"type":53,"tag":227,"props":745,"children":746},{"style":343},[747],{"type":58,"value":370},{"type":53,"tag":227,"props":749,"children":750},{"style":343},[751],{"type":58,"value":375},{"type":53,"tag":227,"props":753,"children":754},{"style":240},[755],{"type":58,"value":756},"Lint source files",{"type":53,"tag":227,"props":758,"children":759},{"style":343},[760],{"type":58,"value":761},"\"\n",{"type":53,"tag":227,"props":763,"children":765},{"class":229,"line":764},15,[766],{"type":53,"tag":227,"props":767,"children":768},{"style":343},[769],{"type":58,"value":592},{"type":53,"tag":227,"props":771,"children":773},{"class":229,"line":772},16,[774,778,783,787,791],{"type":53,"tag":227,"props":775,"children":776},{"style":343},[777],{"type":58,"value":422},{"type":53,"tag":227,"props":779,"children":780},{"style":234},[781],{"type":58,"value":782},"dev",{"type":53,"tag":227,"props":784,"children":785},{"style":343},[786],{"type":58,"value":365},{"type":53,"tag":227,"props":788,"children":789},{"style":343},[790],{"type":58,"value":370},{"type":53,"tag":227,"props":792,"children":793},{"style":343},[794],{"type":58,"value":414},{"type":53,"tag":227,"props":796,"children":798},{"class":229,"line":797},17,[799,803,808,812,816],{"type":53,"tag":227,"props":800,"children":801},{"style":343},[802],{"type":58,"value":447},{"type":53,"tag":227,"props":804,"children":805},{"style":450},[806],{"type":58,"value":807},"cache",{"type":53,"tag":227,"props":809,"children":810},{"style":343},[811],{"type":58,"value":365},{"type":53,"tag":227,"props":813,"children":814},{"style":343},[815],{"type":58,"value":370},{"type":53,"tag":227,"props":817,"children":818},{"style":343},[819],{"type":58,"value":820}," false,\n",{"type":53,"tag":227,"props":822,"children":824},{"class":229,"line":823},18,[825,829,834,838,842],{"type":53,"tag":227,"props":826,"children":827},{"style":343},[828],{"type":58,"value":447},{"type":53,"tag":227,"props":830,"children":831},{"style":450},[832],{"type":58,"value":833},"persistent",{"type":53,"tag":227,"props":835,"children":836},{"style":343},[837],{"type":58,"value":365},{"type":53,"tag":227,"props":839,"children":840},{"style":343},[841],{"type":58,"value":370},{"type":53,"tag":227,"props":843,"children":844},{"style":343},[845],{"type":58,"value":846}," true\n",{"type":53,"tag":227,"props":848,"children":850},{"class":229,"line":849},19,[851],{"type":53,"tag":227,"props":852,"children":853},{"style":343},[854],{"type":58,"value":855},"    }\n",{"type":53,"tag":227,"props":857,"children":859},{"class":229,"line":858},20,[860],{"type":53,"tag":227,"props":861,"children":862},{"style":343},[863],{"type":58,"value":864},"  }\n",{"type":53,"tag":227,"props":866,"children":868},{"class":229,"line":867},21,[869],{"type":53,"tag":227,"props":870,"children":871},{"style":343},[872],{"type":58,"value":873},"}\n",{"type":53,"tag":323,"props":875,"children":877},{"id":876},"advanced-pipeline-with-environment-variables-and-inputs",[878],{"type":58,"value":879},"Advanced pipeline with environment variables and inputs",{"type":53,"tag":216,"props":881,"children":883},{"className":331,"code":882,"language":333,"meta":221,"style":221},"{\n  \"$schema\": \"https:\u002F\u002Fturborepo.dev\u002Fschema.json\",\n  \"globalDependencies\": [\".env\"],\n  \"globalEnv\": [\"CI\", \"NODE_ENV\"],\n  \"tasks\": {\n    \"build\": {\n      \"dependsOn\": [\"^build\"],\n      \"outputs\": [\".next\u002F**\", \"dist\u002F**\"],\n      \"env\": [\"DATABASE_URL\", \"NEXT_PUBLIC_API_URL\"],\n      \"inputs\": [\"src\u002F**\", \"package.json\", \"tsconfig.json\"]\n    },\n    \"test\": {\n      \"dependsOn\": [\"build\"],\n      \"outputs\": [\"coverage\u002F**\"],\n      \"env\": [\"TEST_DATABASE_URL\"]\n    },\n    \"test:unit\": {\n      \"dependsOn\": [],\n      \"outputs\": [\"coverage\u002F**\"]\n    },\n    \"lint\": {\n      \"inputs\": [\"src\u002F**\", \".eslintrc.*\"]\n    },\n    \"typecheck\": {\n      \"dependsOn\": [\"^build\"],\n      \"inputs\": [\"src\u002F**\", \"tsconfig.json\"]\n    },\n    \"db:generate\": {\n      \"cache\": false\n    },\n    \"dev\": {\n      \"cache\": false,\n      \"persistent\": true\n    },\n    \"clean\": {\n      \"cache\": false\n    }\n  }\n}\n",[884],{"type":53,"tag":119,"props":885,"children":886},{"__ignoreMap":221},[887,894,929,970,1028,1051,1074,1113,1168,1226,1301,1308,1331,1370,1410,1450,1457,1481,1505,1544,1551,1574,1631,1639,1664,1704,1760,1768,1793,1818,1826,1850,1874,1898,1906,1931,1955,1963,1971],{"type":53,"tag":227,"props":888,"children":889},{"class":229,"line":230},[890],{"type":53,"tag":227,"props":891,"children":892},{"style":343},[893],{"type":58,"value":346},{"type":53,"tag":227,"props":895,"children":896},{"class":229,"line":246},[897,901,905,909,913,917,921,925],{"type":53,"tag":227,"props":898,"children":899},{"style":343},[900],{"type":58,"value":354},{"type":53,"tag":227,"props":902,"children":903},{"style":357},[904],{"type":58,"value":360},{"type":53,"tag":227,"props":906,"children":907},{"style":343},[908],{"type":58,"value":365},{"type":53,"tag":227,"props":910,"children":911},{"style":343},[912],{"type":58,"value":370},{"type":53,"tag":227,"props":914,"children":915},{"style":343},[916],{"type":58,"value":375},{"type":53,"tag":227,"props":918,"children":919},{"style":240},[920],{"type":58,"value":380},{"type":53,"tag":227,"props":922,"children":923},{"style":343},[924],{"type":58,"value":365},{"type":53,"tag":227,"props":926,"children":927},{"style":343},[928],{"type":58,"value":389},{"type":53,"tag":227,"props":930,"children":931},{"class":229,"line":256},[932,936,941,945,949,953,957,962,966],{"type":53,"tag":227,"props":933,"children":934},{"style":343},[935],{"type":58,"value":354},{"type":53,"tag":227,"props":937,"children":938},{"style":357},[939],{"type":58,"value":940},"globalDependencies",{"type":53,"tag":227,"props":942,"children":943},{"style":343},[944],{"type":58,"value":365},{"type":53,"tag":227,"props":946,"children":947},{"style":343},[948],{"type":58,"value":370},{"type":53,"tag":227,"props":950,"children":951},{"style":343},[952],{"type":58,"value":504},{"type":53,"tag":227,"props":954,"children":955},{"style":343},[956],{"type":58,"value":365},{"type":53,"tag":227,"props":958,"children":959},{"style":240},[960],{"type":58,"value":961},".env",{"type":53,"tag":227,"props":963,"children":964},{"style":343},[965],{"type":58,"value":365},{"type":53,"tag":227,"props":967,"children":968},{"style":343},[969],{"type":58,"value":522},{"type":53,"tag":227,"props":971,"children":972},{"class":229,"line":280},[973,977,982,986,990,994,998,1003,1007,1011,1015,1020,1024],{"type":53,"tag":227,"props":974,"children":975},{"style":343},[976],{"type":58,"value":354},{"type":53,"tag":227,"props":978,"children":979},{"style":357},[980],{"type":58,"value":981},"globalEnv",{"type":53,"tag":227,"props":983,"children":984},{"style":343},[985],{"type":58,"value":365},{"type":53,"tag":227,"props":987,"children":988},{"style":343},[989],{"type":58,"value":370},{"type":53,"tag":227,"props":991,"children":992},{"style":343},[993],{"type":58,"value":504},{"type":53,"tag":227,"props":995,"children":996},{"style":343},[997],{"type":58,"value":365},{"type":53,"tag":227,"props":999,"children":1000},{"style":240},[1001],{"type":58,"value":1002},"CI",{"type":53,"tag":227,"props":1004,"children":1005},{"style":343},[1006],{"type":58,"value":365},{"type":53,"tag":227,"props":1008,"children":1009},{"style":343},[1010],{"type":58,"value":565},{"type":53,"tag":227,"props":1012,"children":1013},{"style":343},[1014],{"type":58,"value":375},{"type":53,"tag":227,"props":1016,"children":1017},{"style":240},[1018],{"type":58,"value":1019},"NODE_ENV",{"type":53,"tag":227,"props":1021,"children":1022},{"style":343},[1023],{"type":58,"value":365},{"type":53,"tag":227,"props":1025,"children":1026},{"style":343},[1027],{"type":58,"value":522},{"type":53,"tag":227,"props":1029,"children":1030},{"class":229,"line":38},[1031,1035,1039,1043,1047],{"type":53,"tag":227,"props":1032,"children":1033},{"style":343},[1034],{"type":58,"value":354},{"type":53,"tag":227,"props":1036,"children":1037},{"style":357},[1038],{"type":58,"value":401},{"type":53,"tag":227,"props":1040,"children":1041},{"style":343},[1042],{"type":58,"value":365},{"type":53,"tag":227,"props":1044,"children":1045},{"style":343},[1046],{"type":58,"value":370},{"type":53,"tag":227,"props":1048,"children":1049},{"style":343},[1050],{"type":58,"value":414},{"type":53,"tag":227,"props":1052,"children":1053},{"class":229,"line":481},[1054,1058,1062,1066,1070],{"type":53,"tag":227,"props":1055,"children":1056},{"style":343},[1057],{"type":58,"value":422},{"type":53,"tag":227,"props":1059,"children":1060},{"style":234},[1061],{"type":58,"value":427},{"type":53,"tag":227,"props":1063,"children":1064},{"style":343},[1065],{"type":58,"value":365},{"type":53,"tag":227,"props":1067,"children":1068},{"style":343},[1069],{"type":58,"value":370},{"type":53,"tag":227,"props":1071,"children":1072},{"style":343},[1073],{"type":58,"value":414},{"type":53,"tag":227,"props":1075,"children":1076},{"class":229,"line":525},[1077,1081,1085,1089,1093,1097,1101,1105,1109],{"type":53,"tag":227,"props":1078,"children":1079},{"style":343},[1080],{"type":58,"value":447},{"type":53,"tag":227,"props":1082,"children":1083},{"style":450},[1084],{"type":58,"value":491},{"type":53,"tag":227,"props":1086,"children":1087},{"style":343},[1088],{"type":58,"value":365},{"type":53,"tag":227,"props":1090,"children":1091},{"style":343},[1092],{"type":58,"value":370},{"type":53,"tag":227,"props":1094,"children":1095},{"style":343},[1096],{"type":58,"value":504},{"type":53,"tag":227,"props":1098,"children":1099},{"style":343},[1100],{"type":58,"value":365},{"type":53,"tag":227,"props":1102,"children":1103},{"style":240},[1104],{"type":58,"value":513},{"type":53,"tag":227,"props":1106,"children":1107},{"style":343},[1108],{"type":58,"value":365},{"type":53,"tag":227,"props":1110,"children":1111},{"style":343},[1112],{"type":58,"value":522},{"type":53,"tag":227,"props":1114,"children":1115},{"class":229,"line":586},[1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164],{"type":53,"tag":227,"props":1117,"children":1118},{"style":343},[1119],{"type":58,"value":447},{"type":53,"tag":227,"props":1121,"children":1122},{"style":450},[1123],{"type":58,"value":535},{"type":53,"tag":227,"props":1125,"children":1126},{"style":343},[1127],{"type":58,"value":365},{"type":53,"tag":227,"props":1129,"children":1130},{"style":343},[1131],{"type":58,"value":370},{"type":53,"tag":227,"props":1133,"children":1134},{"style":343},[1135],{"type":58,"value":504},{"type":53,"tag":227,"props":1137,"children":1138},{"style":343},[1139],{"type":58,"value":365},{"type":53,"tag":227,"props":1141,"children":1142},{"style":240},[1143],{"type":58,"value":556},{"type":53,"tag":227,"props":1145,"children":1146},{"style":343},[1147],{"type":58,"value":365},{"type":53,"tag":227,"props":1149,"children":1150},{"style":343},[1151],{"type":58,"value":565},{"type":53,"tag":227,"props":1153,"children":1154},{"style":343},[1155],{"type":58,"value":375},{"type":53,"tag":227,"props":1157,"children":1158},{"style":240},[1159],{"type":58,"value":574},{"type":53,"tag":227,"props":1161,"children":1162},{"style":343},[1163],{"type":58,"value":365},{"type":53,"tag":227,"props":1165,"children":1166},{"style":343},[1167],{"type":58,"value":522},{"type":53,"tag":227,"props":1169,"children":1170},{"class":229,"line":595},[1171,1175,1180,1184,1188,1192,1196,1201,1205,1209,1213,1218,1222],{"type":53,"tag":227,"props":1172,"children":1173},{"style":343},[1174],{"type":58,"value":447},{"type":53,"tag":227,"props":1176,"children":1177},{"style":450},[1178],{"type":58,"value":1179},"env",{"type":53,"tag":227,"props":1181,"children":1182},{"style":343},[1183],{"type":58,"value":365},{"type":53,"tag":227,"props":1185,"children":1186},{"style":343},[1187],{"type":58,"value":370},{"type":53,"tag":227,"props":1189,"children":1190},{"style":343},[1191],{"type":58,"value":504},{"type":53,"tag":227,"props":1193,"children":1194},{"style":343},[1195],{"type":58,"value":365},{"type":53,"tag":227,"props":1197,"children":1198},{"style":240},[1199],{"type":58,"value":1200},"DATABASE_URL",{"type":53,"tag":227,"props":1202,"children":1203},{"style":343},[1204],{"type":58,"value":365},{"type":53,"tag":227,"props":1206,"children":1207},{"style":343},[1208],{"type":58,"value":565},{"type":53,"tag":227,"props":1210,"children":1211},{"style":343},[1212],{"type":58,"value":375},{"type":53,"tag":227,"props":1214,"children":1215},{"style":240},[1216],{"type":58,"value":1217},"NEXT_PUBLIC_API_URL",{"type":53,"tag":227,"props":1219,"children":1220},{"style":343},[1221],{"type":58,"value":365},{"type":53,"tag":227,"props":1223,"children":1224},{"style":343},[1225],{"type":58,"value":522},{"type":53,"tag":227,"props":1227,"children":1228},{"class":229,"line":620},[1229,1233,1238,1242,1246,1250,1254,1259,1263,1267,1271,1276,1280,1284,1288,1293,1297],{"type":53,"tag":227,"props":1230,"children":1231},{"style":343},[1232],{"type":58,"value":447},{"type":53,"tag":227,"props":1234,"children":1235},{"style":450},[1236],{"type":58,"value":1237},"inputs",{"type":53,"tag":227,"props":1239,"children":1240},{"style":343},[1241],{"type":58,"value":365},{"type":53,"tag":227,"props":1243,"children":1244},{"style":343},[1245],{"type":58,"value":370},{"type":53,"tag":227,"props":1247,"children":1248},{"style":343},[1249],{"type":58,"value":504},{"type":53,"tag":227,"props":1251,"children":1252},{"style":343},[1253],{"type":58,"value":365},{"type":53,"tag":227,"props":1255,"children":1256},{"style":240},[1257],{"type":58,"value":1258},"src\u002F**",{"type":53,"tag":227,"props":1260,"children":1261},{"style":343},[1262],{"type":58,"value":365},{"type":53,"tag":227,"props":1264,"children":1265},{"style":343},[1266],{"type":58,"value":565},{"type":53,"tag":227,"props":1268,"children":1269},{"style":343},[1270],{"type":58,"value":375},{"type":53,"tag":227,"props":1272,"children":1273},{"style":240},[1274],{"type":58,"value":1275},"package.json",{"type":53,"tag":227,"props":1277,"children":1278},{"style":343},[1279],{"type":58,"value":365},{"type":53,"tag":227,"props":1281,"children":1282},{"style":343},[1283],{"type":58,"value":565},{"type":53,"tag":227,"props":1285,"children":1286},{"style":343},[1287],{"type":58,"value":375},{"type":53,"tag":227,"props":1289,"children":1290},{"style":240},[1291],{"type":58,"value":1292},"tsconfig.json",{"type":53,"tag":227,"props":1294,"children":1295},{"style":343},[1296],{"type":58,"value":365},{"type":53,"tag":227,"props":1298,"children":1299},{"style":343},[1300],{"type":58,"value":583},{"type":53,"tag":227,"props":1302,"children":1303},{"class":229,"line":657},[1304],{"type":53,"tag":227,"props":1305,"children":1306},{"style":343},[1307],{"type":58,"value":592},{"type":53,"tag":227,"props":1309,"children":1310},{"class":229,"line":697},[1311,1315,1319,1323,1327],{"type":53,"tag":227,"props":1312,"children":1313},{"style":343},[1314],{"type":58,"value":422},{"type":53,"tag":227,"props":1316,"children":1317},{"style":234},[1318],{"type":58,"value":605},{"type":53,"tag":227,"props":1320,"children":1321},{"style":343},[1322],{"type":58,"value":365},{"type":53,"tag":227,"props":1324,"children":1325},{"style":343},[1326],{"type":58,"value":370},{"type":53,"tag":227,"props":1328,"children":1329},{"style":343},[1330],{"type":58,"value":414},{"type":53,"tag":227,"props":1332,"children":1333},{"class":229,"line":705},[1334,1338,1342,1346,1350,1354,1358,1362,1366],{"type":53,"tag":227,"props":1335,"children":1336},{"style":343},[1337],{"type":58,"value":447},{"type":53,"tag":227,"props":1339,"children":1340},{"style":450},[1341],{"type":58,"value":491},{"type":53,"tag":227,"props":1343,"children":1344},{"style":343},[1345],{"type":58,"value":365},{"type":53,"tag":227,"props":1347,"children":1348},{"style":343},[1349],{"type":58,"value":370},{"type":53,"tag":227,"props":1351,"children":1352},{"style":343},[1353],{"type":58,"value":504},{"type":53,"tag":227,"props":1355,"children":1356},{"style":343},[1357],{"type":58,"value":365},{"type":53,"tag":227,"props":1359,"children":1360},{"style":240},[1361],{"type":58,"value":427},{"type":53,"tag":227,"props":1363,"children":1364},{"style":343},[1365],{"type":58,"value":365},{"type":53,"tag":227,"props":1367,"children":1368},{"style":343},[1369],{"type":58,"value":522},{"type":53,"tag":227,"props":1371,"children":1372},{"class":229,"line":730},[1373,1377,1381,1385,1389,1393,1397,1402,1406],{"type":53,"tag":227,"props":1374,"children":1375},{"style":343},[1376],{"type":58,"value":447},{"type":53,"tag":227,"props":1378,"children":1379},{"style":450},[1380],{"type":58,"value":535},{"type":53,"tag":227,"props":1382,"children":1383},{"style":343},[1384],{"type":58,"value":365},{"type":53,"tag":227,"props":1386,"children":1387},{"style":343},[1388],{"type":58,"value":370},{"type":53,"tag":227,"props":1390,"children":1391},{"style":343},[1392],{"type":58,"value":504},{"type":53,"tag":227,"props":1394,"children":1395},{"style":343},[1396],{"type":58,"value":365},{"type":53,"tag":227,"props":1398,"children":1399},{"style":240},[1400],{"type":58,"value":1401},"coverage\u002F**",{"type":53,"tag":227,"props":1403,"children":1404},{"style":343},[1405],{"type":58,"value":365},{"type":53,"tag":227,"props":1407,"children":1408},{"style":343},[1409],{"type":58,"value":522},{"type":53,"tag":227,"props":1411,"children":1412},{"class":229,"line":764},[1413,1417,1421,1425,1429,1433,1437,1442,1446],{"type":53,"tag":227,"props":1414,"children":1415},{"style":343},[1416],{"type":58,"value":447},{"type":53,"tag":227,"props":1418,"children":1419},{"style":450},[1420],{"type":58,"value":1179},{"type":53,"tag":227,"props":1422,"children":1423},{"style":343},[1424],{"type":58,"value":365},{"type":53,"tag":227,"props":1426,"children":1427},{"style":343},[1428],{"type":58,"value":370},{"type":53,"tag":227,"props":1430,"children":1431},{"style":343},[1432],{"type":58,"value":504},{"type":53,"tag":227,"props":1434,"children":1435},{"style":343},[1436],{"type":58,"value":365},{"type":53,"tag":227,"props":1438,"children":1439},{"style":240},[1440],{"type":58,"value":1441},"TEST_DATABASE_URL",{"type":53,"tag":227,"props":1443,"children":1444},{"style":343},[1445],{"type":58,"value":365},{"type":53,"tag":227,"props":1447,"children":1448},{"style":343},[1449],{"type":58,"value":583},{"type":53,"tag":227,"props":1451,"children":1452},{"class":229,"line":772},[1453],{"type":53,"tag":227,"props":1454,"children":1455},{"style":343},[1456],{"type":58,"value":592},{"type":53,"tag":227,"props":1458,"children":1459},{"class":229,"line":797},[1460,1464,1469,1473,1477],{"type":53,"tag":227,"props":1461,"children":1462},{"style":343},[1463],{"type":58,"value":422},{"type":53,"tag":227,"props":1465,"children":1466},{"style":234},[1467],{"type":58,"value":1468},"test:unit",{"type":53,"tag":227,"props":1470,"children":1471},{"style":343},[1472],{"type":58,"value":365},{"type":53,"tag":227,"props":1474,"children":1475},{"style":343},[1476],{"type":58,"value":370},{"type":53,"tag":227,"props":1478,"children":1479},{"style":343},[1480],{"type":58,"value":414},{"type":53,"tag":227,"props":1482,"children":1483},{"class":229,"line":823},[1484,1488,1492,1496,1500],{"type":53,"tag":227,"props":1485,"children":1486},{"style":343},[1487],{"type":58,"value":447},{"type":53,"tag":227,"props":1489,"children":1490},{"style":450},[1491],{"type":58,"value":491},{"type":53,"tag":227,"props":1493,"children":1494},{"style":343},[1495],{"type":58,"value":365},{"type":53,"tag":227,"props":1497,"children":1498},{"style":343},[1499],{"type":58,"value":370},{"type":53,"tag":227,"props":1501,"children":1502},{"style":343},[1503],{"type":58,"value":1504}," [],\n",{"type":53,"tag":227,"props":1506,"children":1507},{"class":229,"line":849},[1508,1512,1516,1520,1524,1528,1532,1536,1540],{"type":53,"tag":227,"props":1509,"children":1510},{"style":343},[1511],{"type":58,"value":447},{"type":53,"tag":227,"props":1513,"children":1514},{"style":450},[1515],{"type":58,"value":535},{"type":53,"tag":227,"props":1517,"children":1518},{"style":343},[1519],{"type":58,"value":365},{"type":53,"tag":227,"props":1521,"children":1522},{"style":343},[1523],{"type":58,"value":370},{"type":53,"tag":227,"props":1525,"children":1526},{"style":343},[1527],{"type":58,"value":504},{"type":53,"tag":227,"props":1529,"children":1530},{"style":343},[1531],{"type":58,"value":365},{"type":53,"tag":227,"props":1533,"children":1534},{"style":240},[1535],{"type":58,"value":1401},{"type":53,"tag":227,"props":1537,"children":1538},{"style":343},[1539],{"type":58,"value":365},{"type":53,"tag":227,"props":1541,"children":1542},{"style":343},[1543],{"type":58,"value":583},{"type":53,"tag":227,"props":1545,"children":1546},{"class":229,"line":858},[1547],{"type":53,"tag":227,"props":1548,"children":1549},{"style":343},[1550],{"type":58,"value":592},{"type":53,"tag":227,"props":1552,"children":1553},{"class":229,"line":867},[1554,1558,1562,1566,1570],{"type":53,"tag":227,"props":1555,"children":1556},{"style":343},[1557],{"type":58,"value":422},{"type":53,"tag":227,"props":1559,"children":1560},{"style":234},[1561],{"type":58,"value":715},{"type":53,"tag":227,"props":1563,"children":1564},{"style":343},[1565],{"type":58,"value":365},{"type":53,"tag":227,"props":1567,"children":1568},{"style":343},[1569],{"type":58,"value":370},{"type":53,"tag":227,"props":1571,"children":1572},{"style":343},[1573],{"type":58,"value":414},{"type":53,"tag":227,"props":1575,"children":1577},{"class":229,"line":1576},22,[1578,1582,1586,1590,1594,1598,1602,1606,1610,1614,1618,1623,1627],{"type":53,"tag":227,"props":1579,"children":1580},{"style":343},[1581],{"type":58,"value":447},{"type":53,"tag":227,"props":1583,"children":1584},{"style":450},[1585],{"type":58,"value":1237},{"type":53,"tag":227,"props":1587,"children":1588},{"style":343},[1589],{"type":58,"value":365},{"type":53,"tag":227,"props":1591,"children":1592},{"style":343},[1593],{"type":58,"value":370},{"type":53,"tag":227,"props":1595,"children":1596},{"style":343},[1597],{"type":58,"value":504},{"type":53,"tag":227,"props":1599,"children":1600},{"style":343},[1601],{"type":58,"value":365},{"type":53,"tag":227,"props":1603,"children":1604},{"style":240},[1605],{"type":58,"value":1258},{"type":53,"tag":227,"props":1607,"children":1608},{"style":343},[1609],{"type":58,"value":365},{"type":53,"tag":227,"props":1611,"children":1612},{"style":343},[1613],{"type":58,"value":565},{"type":53,"tag":227,"props":1615,"children":1616},{"style":343},[1617],{"type":58,"value":375},{"type":53,"tag":227,"props":1619,"children":1620},{"style":240},[1621],{"type":58,"value":1622},".eslintrc.*",{"type":53,"tag":227,"props":1624,"children":1625},{"style":343},[1626],{"type":58,"value":365},{"type":53,"tag":227,"props":1628,"children":1629},{"style":343},[1630],{"type":58,"value":583},{"type":53,"tag":227,"props":1632,"children":1634},{"class":229,"line":1633},23,[1635],{"type":53,"tag":227,"props":1636,"children":1637},{"style":343},[1638],{"type":58,"value":592},{"type":53,"tag":227,"props":1640,"children":1642},{"class":229,"line":1641},24,[1643,1647,1652,1656,1660],{"type":53,"tag":227,"props":1644,"children":1645},{"style":343},[1646],{"type":58,"value":422},{"type":53,"tag":227,"props":1648,"children":1649},{"style":234},[1650],{"type":58,"value":1651},"typecheck",{"type":53,"tag":227,"props":1653,"children":1654},{"style":343},[1655],{"type":58,"value":365},{"type":53,"tag":227,"props":1657,"children":1658},{"style":343},[1659],{"type":58,"value":370},{"type":53,"tag":227,"props":1661,"children":1662},{"style":343},[1663],{"type":58,"value":414},{"type":53,"tag":227,"props":1665,"children":1667},{"class":229,"line":1666},25,[1668,1672,1676,1680,1684,1688,1692,1696,1700],{"type":53,"tag":227,"props":1669,"children":1670},{"style":343},[1671],{"type":58,"value":447},{"type":53,"tag":227,"props":1673,"children":1674},{"style":450},[1675],{"type":58,"value":491},{"type":53,"tag":227,"props":1677,"children":1678},{"style":343},[1679],{"type":58,"value":365},{"type":53,"tag":227,"props":1681,"children":1682},{"style":343},[1683],{"type":58,"value":370},{"type":53,"tag":227,"props":1685,"children":1686},{"style":343},[1687],{"type":58,"value":504},{"type":53,"tag":227,"props":1689,"children":1690},{"style":343},[1691],{"type":58,"value":365},{"type":53,"tag":227,"props":1693,"children":1694},{"style":240},[1695],{"type":58,"value":513},{"type":53,"tag":227,"props":1697,"children":1698},{"style":343},[1699],{"type":58,"value":365},{"type":53,"tag":227,"props":1701,"children":1702},{"style":343},[1703],{"type":58,"value":522},{"type":53,"tag":227,"props":1705,"children":1707},{"class":229,"line":1706},26,[1708,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756],{"type":53,"tag":227,"props":1709,"children":1710},{"style":343},[1711],{"type":58,"value":447},{"type":53,"tag":227,"props":1713,"children":1714},{"style":450},[1715],{"type":58,"value":1237},{"type":53,"tag":227,"props":1717,"children":1718},{"style":343},[1719],{"type":58,"value":365},{"type":53,"tag":227,"props":1721,"children":1722},{"style":343},[1723],{"type":58,"value":370},{"type":53,"tag":227,"props":1725,"children":1726},{"style":343},[1727],{"type":58,"value":504},{"type":53,"tag":227,"props":1729,"children":1730},{"style":343},[1731],{"type":58,"value":365},{"type":53,"tag":227,"props":1733,"children":1734},{"style":240},[1735],{"type":58,"value":1258},{"type":53,"tag":227,"props":1737,"children":1738},{"style":343},[1739],{"type":58,"value":365},{"type":53,"tag":227,"props":1741,"children":1742},{"style":343},[1743],{"type":58,"value":565},{"type":53,"tag":227,"props":1745,"children":1746},{"style":343},[1747],{"type":58,"value":375},{"type":53,"tag":227,"props":1749,"children":1750},{"style":240},[1751],{"type":58,"value":1292},{"type":53,"tag":227,"props":1753,"children":1754},{"style":343},[1755],{"type":58,"value":365},{"type":53,"tag":227,"props":1757,"children":1758},{"style":343},[1759],{"type":58,"value":583},{"type":53,"tag":227,"props":1761,"children":1763},{"class":229,"line":1762},27,[1764],{"type":53,"tag":227,"props":1765,"children":1766},{"style":343},[1767],{"type":58,"value":592},{"type":53,"tag":227,"props":1769,"children":1771},{"class":229,"line":1770},28,[1772,1776,1781,1785,1789],{"type":53,"tag":227,"props":1773,"children":1774},{"style":343},[1775],{"type":58,"value":422},{"type":53,"tag":227,"props":1777,"children":1778},{"style":234},[1779],{"type":58,"value":1780},"db:generate",{"type":53,"tag":227,"props":1782,"children":1783},{"style":343},[1784],{"type":58,"value":365},{"type":53,"tag":227,"props":1786,"children":1787},{"style":343},[1788],{"type":58,"value":370},{"type":53,"tag":227,"props":1790,"children":1791},{"style":343},[1792],{"type":58,"value":414},{"type":53,"tag":227,"props":1794,"children":1796},{"class":229,"line":1795},29,[1797,1801,1805,1809,1813],{"type":53,"tag":227,"props":1798,"children":1799},{"style":343},[1800],{"type":58,"value":447},{"type":53,"tag":227,"props":1802,"children":1803},{"style":450},[1804],{"type":58,"value":807},{"type":53,"tag":227,"props":1806,"children":1807},{"style":343},[1808],{"type":58,"value":365},{"type":53,"tag":227,"props":1810,"children":1811},{"style":343},[1812],{"type":58,"value":370},{"type":53,"tag":227,"props":1814,"children":1815},{"style":343},[1816],{"type":58,"value":1817}," false\n",{"type":53,"tag":227,"props":1819,"children":1821},{"class":229,"line":1820},30,[1822],{"type":53,"tag":227,"props":1823,"children":1824},{"style":343},[1825],{"type":58,"value":592},{"type":53,"tag":227,"props":1827,"children":1829},{"class":229,"line":1828},31,[1830,1834,1838,1842,1846],{"type":53,"tag":227,"props":1831,"children":1832},{"style":343},[1833],{"type":58,"value":422},{"type":53,"tag":227,"props":1835,"children":1836},{"style":234},[1837],{"type":58,"value":782},{"type":53,"tag":227,"props":1839,"children":1840},{"style":343},[1841],{"type":58,"value":365},{"type":53,"tag":227,"props":1843,"children":1844},{"style":343},[1845],{"type":58,"value":370},{"type":53,"tag":227,"props":1847,"children":1848},{"style":343},[1849],{"type":58,"value":414},{"type":53,"tag":227,"props":1851,"children":1853},{"class":229,"line":1852},32,[1854,1858,1862,1866,1870],{"type":53,"tag":227,"props":1855,"children":1856},{"style":343},[1857],{"type":58,"value":447},{"type":53,"tag":227,"props":1859,"children":1860},{"style":450},[1861],{"type":58,"value":807},{"type":53,"tag":227,"props":1863,"children":1864},{"style":343},[1865],{"type":58,"value":365},{"type":53,"tag":227,"props":1867,"children":1868},{"style":343},[1869],{"type":58,"value":370},{"type":53,"tag":227,"props":1871,"children":1872},{"style":343},[1873],{"type":58,"value":820},{"type":53,"tag":227,"props":1875,"children":1877},{"class":229,"line":1876},33,[1878,1882,1886,1890,1894],{"type":53,"tag":227,"props":1879,"children":1880},{"style":343},[1881],{"type":58,"value":447},{"type":53,"tag":227,"props":1883,"children":1884},{"style":450},[1885],{"type":58,"value":833},{"type":53,"tag":227,"props":1887,"children":1888},{"style":343},[1889],{"type":58,"value":365},{"type":53,"tag":227,"props":1891,"children":1892},{"style":343},[1893],{"type":58,"value":370},{"type":53,"tag":227,"props":1895,"children":1896},{"style":343},[1897],{"type":58,"value":846},{"type":53,"tag":227,"props":1899,"children":1901},{"class":229,"line":1900},34,[1902],{"type":53,"tag":227,"props":1903,"children":1904},{"style":343},[1905],{"type":58,"value":592},{"type":53,"tag":227,"props":1907,"children":1909},{"class":229,"line":1908},35,[1910,1914,1919,1923,1927],{"type":53,"tag":227,"props":1911,"children":1912},{"style":343},[1913],{"type":58,"value":422},{"type":53,"tag":227,"props":1915,"children":1916},{"style":234},[1917],{"type":58,"value":1918},"clean",{"type":53,"tag":227,"props":1920,"children":1921},{"style":343},[1922],{"type":58,"value":365},{"type":53,"tag":227,"props":1924,"children":1925},{"style":343},[1926],{"type":58,"value":370},{"type":53,"tag":227,"props":1928,"children":1929},{"style":343},[1930],{"type":58,"value":414},{"type":53,"tag":227,"props":1932,"children":1934},{"class":229,"line":1933},36,[1935,1939,1943,1947,1951],{"type":53,"tag":227,"props":1936,"children":1937},{"style":343},[1938],{"type":58,"value":447},{"type":53,"tag":227,"props":1940,"children":1941},{"style":450},[1942],{"type":58,"value":807},{"type":53,"tag":227,"props":1944,"children":1945},{"style":343},[1946],{"type":58,"value":365},{"type":53,"tag":227,"props":1948,"children":1949},{"style":343},[1950],{"type":58,"value":370},{"type":53,"tag":227,"props":1952,"children":1953},{"style":343},[1954],{"type":58,"value":1817},{"type":53,"tag":227,"props":1956,"children":1958},{"class":229,"line":1957},37,[1959],{"type":53,"tag":227,"props":1960,"children":1961},{"style":343},[1962],{"type":58,"value":855},{"type":53,"tag":227,"props":1964,"children":1966},{"class":229,"line":1965},38,[1967],{"type":53,"tag":227,"props":1968,"children":1969},{"style":343},[1970],{"type":58,"value":864},{"type":53,"tag":227,"props":1972,"children":1974},{"class":229,"line":1973},39,[1975],{"type":53,"tag":227,"props":1976,"children":1977},{"style":343},[1978],{"type":58,"value":873},{"type":53,"tag":323,"props":1980,"children":1982},{"id":1981},"key-configuration",[1983],{"type":58,"value":1984},"Key Configuration",{"type":53,"tag":73,"props":1986,"children":1987},{},[1988,2014,2038,2048,2058,2068,2079,2090,2100],{"type":53,"tag":77,"props":1989,"children":1990},{},[1991,1997,1999,2004,2006,2012],{"type":53,"tag":119,"props":1992,"children":1994},{"className":1993},[],[1995],{"type":58,"value":1996},"dependsOn: [\"^build\"]",{"type":58,"value":1998}," — Run ",{"type":53,"tag":119,"props":2000,"children":2002},{"className":2001},[],[2003],{"type":58,"value":427},{"type":58,"value":2005}," in dependencies first (",{"type":53,"tag":119,"props":2007,"children":2009},{"className":2008},[],[2010],{"type":58,"value":2011},"^",{"type":58,"value":2013}," = topological)",{"type":53,"tag":77,"props":2015,"children":2016},{},[2017,2023,2024,2029,2031,2036],{"type":53,"tag":119,"props":2018,"children":2020},{"className":2019},[],[2021],{"type":58,"value":2022},"dependsOn: [\"build\"]",{"type":58,"value":1998},{"type":53,"tag":119,"props":2025,"children":2027},{"className":2026},[],[2028],{"type":58,"value":427},{"type":58,"value":2030}," in the same package first (no ",{"type":53,"tag":119,"props":2032,"children":2034},{"className":2033},[],[2035],{"type":58,"value":2011},{"type":58,"value":2037},")",{"type":53,"tag":77,"props":2039,"children":2040},{},[2041,2046],{"type":53,"tag":119,"props":2042,"children":2044},{"className":2043},[],[2045],{"type":58,"value":535},{"type":58,"value":2047}," — Files to cache (build artifacts)",{"type":53,"tag":77,"props":2049,"children":2050},{},[2051,2056],{"type":53,"tag":119,"props":2052,"children":2054},{"className":2053},[],[2055],{"type":58,"value":1237},{"type":58,"value":2057}," — Files that affect the task hash (default: all non-gitignored files)",{"type":53,"tag":77,"props":2059,"children":2060},{},[2061,2066],{"type":53,"tag":119,"props":2062,"children":2064},{"className":2063},[],[2065],{"type":58,"value":1179},{"type":58,"value":2067}," — Environment variables that affect the task hash",{"type":53,"tag":77,"props":2069,"children":2070},{},[2071,2077],{"type":53,"tag":119,"props":2072,"children":2074},{"className":2073},[],[2075],{"type":58,"value":2076},"cache: false",{"type":58,"value":2078}," — Skip caching (for dev servers, codegen)",{"type":53,"tag":77,"props":2080,"children":2081},{},[2082,2088],{"type":53,"tag":119,"props":2083,"children":2085},{"className":2084},[],[2086],{"type":58,"value":2087},"persistent: true",{"type":58,"value":2089}," — Long-running tasks (dev servers)",{"type":53,"tag":77,"props":2091,"children":2092},{},[2093,2098],{"type":53,"tag":119,"props":2094,"children":2096},{"className":2095},[],[2097],{"type":58,"value":940},{"type":58,"value":2099}," — Files that invalidate all task caches when changed",{"type":53,"tag":77,"props":2101,"children":2102},{},[2103,2108],{"type":53,"tag":119,"props":2104,"children":2106},{"className":2105},[],[2107],{"type":58,"value":981},{"type":58,"value":2109}," — Env vars that invalidate all task caches when changed",{"type":53,"tag":66,"props":2111,"children":2113},{"id":2112},"workspace-filtering",[2114],{"type":58,"value":2115},"Workspace Filtering",{"type":53,"tag":60,"props":2117,"children":2118},{},[2119],{"type":58,"value":2120},"Run tasks in specific packages or subsets of your monorepo:",{"type":53,"tag":216,"props":2122,"children":2124},{"className":218,"code":2123,"language":220,"meta":221,"style":221},"# Single package\nturbo build --filter=web\n\n# Package and its dependencies\nturbo build --filter=web...\n\n# Package and its dependents (what depends on it)\nturbo build --filter=...ui\n\n# Multiple packages\nturbo build --filter=web --filter=api\n\n# By directory\nturbo build --filter=.\u002Fapps\u002F*\n\n# Packages that changed since main\nturbo build --filter=[main]\n\n# Combine: changed packages and their dependents\nturbo build --filter=...[main]\n\n# Exclude a package\nturbo build --filter=!docs\n\n# Packages matching a pattern\nturbo build --filter=@myorg\u002F*\n",[2125],{"type":53,"tag":119,"props":2126,"children":2127},{"__ignoreMap":221},[2128,2136,2154,2163,2171,2187,2194,2202,2218,2225,2233,2254,2261,2269,2290,2297,2305,2335,2342,2350,2378,2385,2393,2409,2416,2424],{"type":53,"tag":227,"props":2129,"children":2130},{"class":229,"line":230},[2131],{"type":53,"tag":227,"props":2132,"children":2133},{"style":250},[2134],{"type":58,"value":2135},"# Single package\n",{"type":53,"tag":227,"props":2137,"children":2138},{"class":229,"line":246},[2139,2144,2149],{"type":53,"tag":227,"props":2140,"children":2141},{"style":234},[2142],{"type":58,"value":2143},"turbo",{"type":53,"tag":227,"props":2145,"children":2146},{"style":240},[2147],{"type":58,"value":2148}," build",{"type":53,"tag":227,"props":2150,"children":2151},{"style":240},[2152],{"type":58,"value":2153}," --filter=web\n",{"type":53,"tag":227,"props":2155,"children":2156},{"class":229,"line":256},[2157],{"type":53,"tag":227,"props":2158,"children":2160},{"emptyLinePlaceholder":2159},true,[2161],{"type":58,"value":2162},"\n",{"type":53,"tag":227,"props":2164,"children":2165},{"class":229,"line":280},[2166],{"type":53,"tag":227,"props":2167,"children":2168},{"style":250},[2169],{"type":58,"value":2170},"# Package and its dependencies\n",{"type":53,"tag":227,"props":2172,"children":2173},{"class":229,"line":38},[2174,2178,2182],{"type":53,"tag":227,"props":2175,"children":2176},{"style":234},[2177],{"type":58,"value":2143},{"type":53,"tag":227,"props":2179,"children":2180},{"style":240},[2181],{"type":58,"value":2148},{"type":53,"tag":227,"props":2183,"children":2184},{"style":240},[2185],{"type":58,"value":2186}," --filter=web...\n",{"type":53,"tag":227,"props":2188,"children":2189},{"class":229,"line":481},[2190],{"type":53,"tag":227,"props":2191,"children":2192},{"emptyLinePlaceholder":2159},[2193],{"type":58,"value":2162},{"type":53,"tag":227,"props":2195,"children":2196},{"class":229,"line":525},[2197],{"type":53,"tag":227,"props":2198,"children":2199},{"style":250},[2200],{"type":58,"value":2201},"# Package and its dependents (what depends on it)\n",{"type":53,"tag":227,"props":2203,"children":2204},{"class":229,"line":586},[2205,2209,2213],{"type":53,"tag":227,"props":2206,"children":2207},{"style":234},[2208],{"type":58,"value":2143},{"type":53,"tag":227,"props":2210,"children":2211},{"style":240},[2212],{"type":58,"value":2148},{"type":53,"tag":227,"props":2214,"children":2215},{"style":240},[2216],{"type":58,"value":2217}," --filter=...ui\n",{"type":53,"tag":227,"props":2219,"children":2220},{"class":229,"line":595},[2221],{"type":53,"tag":227,"props":2222,"children":2223},{"emptyLinePlaceholder":2159},[2224],{"type":58,"value":2162},{"type":53,"tag":227,"props":2226,"children":2227},{"class":229,"line":620},[2228],{"type":53,"tag":227,"props":2229,"children":2230},{"style":250},[2231],{"type":58,"value":2232},"# Multiple packages\n",{"type":53,"tag":227,"props":2234,"children":2235},{"class":229,"line":657},[2236,2240,2244,2249],{"type":53,"tag":227,"props":2237,"children":2238},{"style":234},[2239],{"type":58,"value":2143},{"type":53,"tag":227,"props":2241,"children":2242},{"style":240},[2243],{"type":58,"value":2148},{"type":53,"tag":227,"props":2245,"children":2246},{"style":240},[2247],{"type":58,"value":2248}," --filter=web",{"type":53,"tag":227,"props":2250,"children":2251},{"style":240},[2252],{"type":58,"value":2253}," --filter=api\n",{"type":53,"tag":227,"props":2255,"children":2256},{"class":229,"line":697},[2257],{"type":53,"tag":227,"props":2258,"children":2259},{"emptyLinePlaceholder":2159},[2260],{"type":58,"value":2162},{"type":53,"tag":227,"props":2262,"children":2263},{"class":229,"line":705},[2264],{"type":53,"tag":227,"props":2265,"children":2266},{"style":250},[2267],{"type":58,"value":2268},"# By directory\n",{"type":53,"tag":227,"props":2270,"children":2271},{"class":229,"line":730},[2272,2276,2280,2285],{"type":53,"tag":227,"props":2273,"children":2274},{"style":234},[2275],{"type":58,"value":2143},{"type":53,"tag":227,"props":2277,"children":2278},{"style":240},[2279],{"type":58,"value":2148},{"type":53,"tag":227,"props":2281,"children":2282},{"style":240},[2283],{"type":58,"value":2284}," --filter=.\u002Fapps\u002F",{"type":53,"tag":227,"props":2286,"children":2287},{"style":343},[2288],{"type":58,"value":2289},"*\n",{"type":53,"tag":227,"props":2291,"children":2292},{"class":229,"line":764},[2293],{"type":53,"tag":227,"props":2294,"children":2295},{"emptyLinePlaceholder":2159},[2296],{"type":58,"value":2162},{"type":53,"tag":227,"props":2298,"children":2299},{"class":229,"line":772},[2300],{"type":53,"tag":227,"props":2301,"children":2302},{"style":250},[2303],{"type":58,"value":2304},"# Packages that changed since main\n",{"type":53,"tag":227,"props":2306,"children":2307},{"class":229,"line":797},[2308,2312,2316,2321,2326,2331],{"type":53,"tag":227,"props":2309,"children":2310},{"style":234},[2311],{"type":58,"value":2143},{"type":53,"tag":227,"props":2313,"children":2314},{"style":240},[2315],{"type":58,"value":2148},{"type":53,"tag":227,"props":2317,"children":2318},{"style":240},[2319],{"type":58,"value":2320}," --filter=",{"type":53,"tag":227,"props":2322,"children":2323},{"style":343},[2324],{"type":58,"value":2325},"[",{"type":53,"tag":227,"props":2327,"children":2328},{"style":240},[2329],{"type":58,"value":2330},"main",{"type":53,"tag":227,"props":2332,"children":2333},{"style":343},[2334],{"type":58,"value":583},{"type":53,"tag":227,"props":2336,"children":2337},{"class":229,"line":823},[2338],{"type":53,"tag":227,"props":2339,"children":2340},{"emptyLinePlaceholder":2159},[2341],{"type":58,"value":2162},{"type":53,"tag":227,"props":2343,"children":2344},{"class":229,"line":849},[2345],{"type":53,"tag":227,"props":2346,"children":2347},{"style":250},[2348],{"type":58,"value":2349},"# Combine: changed packages and their dependents\n",{"type":53,"tag":227,"props":2351,"children":2352},{"class":229,"line":858},[2353,2357,2361,2366,2370,2374],{"type":53,"tag":227,"props":2354,"children":2355},{"style":234},[2356],{"type":58,"value":2143},{"type":53,"tag":227,"props":2358,"children":2359},{"style":240},[2360],{"type":58,"value":2148},{"type":53,"tag":227,"props":2362,"children":2363},{"style":240},[2364],{"type":58,"value":2365}," --filter=...",{"type":53,"tag":227,"props":2367,"children":2368},{"style":343},[2369],{"type":58,"value":2325},{"type":53,"tag":227,"props":2371,"children":2372},{"style":240},[2373],{"type":58,"value":2330},{"type":53,"tag":227,"props":2375,"children":2376},{"style":343},[2377],{"type":58,"value":583},{"type":53,"tag":227,"props":2379,"children":2380},{"class":229,"line":867},[2381],{"type":53,"tag":227,"props":2382,"children":2383},{"emptyLinePlaceholder":2159},[2384],{"type":58,"value":2162},{"type":53,"tag":227,"props":2386,"children":2387},{"class":229,"line":1576},[2388],{"type":53,"tag":227,"props":2389,"children":2390},{"style":250},[2391],{"type":58,"value":2392},"# Exclude a package\n",{"type":53,"tag":227,"props":2394,"children":2395},{"class":229,"line":1633},[2396,2400,2404],{"type":53,"tag":227,"props":2397,"children":2398},{"style":234},[2399],{"type":58,"value":2143},{"type":53,"tag":227,"props":2401,"children":2402},{"style":240},[2403],{"type":58,"value":2148},{"type":53,"tag":227,"props":2405,"children":2406},{"style":240},[2407],{"type":58,"value":2408}," --filter=!docs\n",{"type":53,"tag":227,"props":2410,"children":2411},{"class":229,"line":1641},[2412],{"type":53,"tag":227,"props":2413,"children":2414},{"emptyLinePlaceholder":2159},[2415],{"type":58,"value":2162},{"type":53,"tag":227,"props":2417,"children":2418},{"class":229,"line":1666},[2419],{"type":53,"tag":227,"props":2420,"children":2421},{"style":250},[2422],{"type":58,"value":2423},"# Packages matching a pattern\n",{"type":53,"tag":227,"props":2425,"children":2426},{"class":229,"line":1706},[2427,2431,2435,2440],{"type":53,"tag":227,"props":2428,"children":2429},{"style":234},[2430],{"type":58,"value":2143},{"type":53,"tag":227,"props":2432,"children":2433},{"style":240},[2434],{"type":58,"value":2148},{"type":53,"tag":227,"props":2436,"children":2437},{"style":240},[2438],{"type":58,"value":2439}," --filter=@myorg\u002F",{"type":53,"tag":227,"props":2441,"children":2442},{"style":343},[2443],{"type":58,"value":2289},{"type":53,"tag":323,"props":2445,"children":2447},{"id":2446},"filter-syntax-reference",[2448],{"type":58,"value":2449},"Filter syntax reference",{"type":53,"tag":2451,"props":2452,"children":2453},"table",{},[2454,2473],{"type":53,"tag":2455,"props":2456,"children":2457},"thead",{},[2458],{"type":53,"tag":2459,"props":2460,"children":2461},"tr",{},[2462,2468],{"type":53,"tag":2463,"props":2464,"children":2465},"th",{},[2466],{"type":58,"value":2467},"Pattern",{"type":53,"tag":2463,"props":2469,"children":2470},{},[2471],{"type":58,"value":2472},"Meaning",{"type":53,"tag":2474,"props":2475,"children":2476},"tbody",{},[2477,2502,2524,2546,2568,2593,2617,2644],{"type":53,"tag":2459,"props":2478,"children":2479},{},[2480,2490],{"type":53,"tag":2481,"props":2482,"children":2483},"td",{},[2484],{"type":53,"tag":119,"props":2485,"children":2487},{"className":2486},[],[2488],{"type":58,"value":2489},"web",{"type":53,"tag":2481,"props":2491,"children":2492},{},[2493,2495,2500],{"type":58,"value":2494},"Only the ",{"type":53,"tag":119,"props":2496,"children":2498},{"className":2497},[],[2499],{"type":58,"value":2489},{"type":58,"value":2501}," package",{"type":53,"tag":2459,"props":2503,"children":2504},{},[2505,2514],{"type":53,"tag":2481,"props":2506,"children":2507},{},[2508],{"type":53,"tag":119,"props":2509,"children":2511},{"className":2510},[],[2512],{"type":58,"value":2513},"web...",{"type":53,"tag":2481,"props":2515,"children":2516},{},[2517,2522],{"type":53,"tag":119,"props":2518,"children":2520},{"className":2519},[],[2521],{"type":58,"value":2489},{"type":58,"value":2523}," and all its dependencies",{"type":53,"tag":2459,"props":2525,"children":2526},{},[2527,2536],{"type":53,"tag":2481,"props":2528,"children":2529},{},[2530],{"type":53,"tag":119,"props":2531,"children":2533},{"className":2532},[],[2534],{"type":58,"value":2535},"...web",{"type":53,"tag":2481,"props":2537,"children":2538},{},[2539,2544],{"type":53,"tag":119,"props":2540,"children":2542},{"className":2541},[],[2543],{"type":58,"value":2489},{"type":58,"value":2545}," and all its dependents",{"type":53,"tag":2459,"props":2547,"children":2548},{},[2549,2558],{"type":53,"tag":2481,"props":2550,"children":2551},{},[2552],{"type":53,"tag":119,"props":2553,"children":2555},{"className":2554},[],[2556],{"type":58,"value":2557},"...web...",{"type":53,"tag":2481,"props":2559,"children":2560},{},[2561,2566],{"type":53,"tag":119,"props":2562,"children":2564},{"className":2563},[],[2565],{"type":58,"value":2489},{"type":58,"value":2567},", its dependencies, and its dependents",{"type":53,"tag":2459,"props":2569,"children":2570},{},[2571,2580],{"type":53,"tag":2481,"props":2572,"children":2573},{},[2574],{"type":53,"tag":119,"props":2575,"children":2577},{"className":2576},[],[2578],{"type":58,"value":2579},".\u002Fapps\u002F*",{"type":53,"tag":2481,"props":2581,"children":2582},{},[2583,2585,2591],{"type":58,"value":2584},"All packages in the ",{"type":53,"tag":119,"props":2586,"children":2588},{"className":2587},[],[2589],{"type":58,"value":2590},"apps\u002F",{"type":58,"value":2592}," directory",{"type":53,"tag":2459,"props":2594,"children":2595},{},[2596,2605],{"type":53,"tag":2481,"props":2597,"children":2598},{},[2599],{"type":53,"tag":119,"props":2600,"children":2602},{"className":2601},[],[2603],{"type":58,"value":2604},"[main]",{"type":53,"tag":2481,"props":2606,"children":2607},{},[2608,2610,2615],{"type":58,"value":2609},"Packages changed since ",{"type":53,"tag":119,"props":2611,"children":2613},{"className":2612},[],[2614],{"type":58,"value":2330},{"type":58,"value":2616}," branch",{"type":53,"tag":2459,"props":2618,"children":2619},{},[2620,2629],{"type":53,"tag":2481,"props":2621,"children":2622},{},[2623],{"type":53,"tag":119,"props":2624,"children":2626},{"className":2625},[],[2627],{"type":58,"value":2628},"{.\u002Fapps\u002Fweb}[main]",{"type":53,"tag":2481,"props":2630,"children":2631},{},[2632,2637,2639],{"type":53,"tag":119,"props":2633,"children":2635},{"className":2634},[],[2636],{"type":58,"value":2489},{"type":58,"value":2638}," only if it changed since ",{"type":53,"tag":119,"props":2640,"children":2642},{"className":2641},[],[2643],{"type":58,"value":2330},{"type":53,"tag":2459,"props":2645,"children":2646},{},[2647,2656],{"type":53,"tag":2481,"props":2648,"children":2649},{},[2650],{"type":53,"tag":119,"props":2651,"children":2653},{"className":2652},[],[2654],{"type":58,"value":2655},"!docs",{"type":53,"tag":2481,"props":2657,"children":2658},{},[2659,2661,2667],{"type":58,"value":2660},"Exclude the ",{"type":53,"tag":119,"props":2662,"children":2664},{"className":2663},[],[2665],{"type":58,"value":2666},"docs",{"type":58,"value":2501},{"type":53,"tag":66,"props":2669,"children":2671},{"id":2670},"ci-matrix-strategies",[2672],{"type":58,"value":2673},"CI Matrix Strategies",{"type":53,"tag":323,"props":2675,"children":2677},{"id":2676},"github-actions-parallel-jobs-per-package",[2678],{"type":58,"value":2679},"GitHub Actions — parallel jobs per package",{"type":53,"tag":216,"props":2681,"children":2685},{"className":2682,"code":2683,"language":2684,"meta":221,"style":221},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","name: CI\non: [push, pull_request]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions\u002Fcheckout@v4\n        with:\n          fetch-depth: 0 # Required for --affected\n      - uses: actions\u002Fsetup-node@v4\n        with:\n          node-version: 22\n      - run: npm ci\n      - run: turbo build test lint --affected\n        env:\n          TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}\n          TURBO_TEAM: ${{ vars.TURBO_TEAM }}\n\n  deploy-web:\n    needs: build\n    if: github.ref == 'refs\u002Fheads\u002Fmain'\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions\u002Fcheckout@v4\n      - run: npm ci\n      - run: turbo build --filter=web\n        env:\n          TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}\n          TURBO_TEAM: ${{ vars.TURBO_TEAM }}\n","yaml",[2686],{"type":53,"tag":119,"props":2687,"children":2688},{"__ignoreMap":221},[2689,2707,2742,2749,2762,2774,2791,2803,2825,2837,2859,2879,2890,2907,2928,2948,2960,2977,2994,3001,3013,3030,3047,3062,3073,3092,3111,3131,3142,3157],{"type":53,"tag":227,"props":2690,"children":2691},{"class":229,"line":230},[2692,2698,2702],{"type":53,"tag":227,"props":2693,"children":2695},{"style":2694},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[2696],{"type":58,"value":2697},"name",{"type":53,"tag":227,"props":2699,"children":2700},{"style":343},[2701],{"type":58,"value":370},{"type":53,"tag":227,"props":2703,"children":2704},{"style":240},[2705],{"type":58,"value":2706}," CI\n",{"type":53,"tag":227,"props":2708,"children":2709},{"class":229,"line":246},[2710,2716,2720,2724,2729,2733,2738],{"type":53,"tag":227,"props":2711,"children":2713},{"style":2712},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[2714],{"type":58,"value":2715},"on",{"type":53,"tag":227,"props":2717,"children":2718},{"style":343},[2719],{"type":58,"value":370},{"type":53,"tag":227,"props":2721,"children":2722},{"style":343},[2723],{"type":58,"value":504},{"type":53,"tag":227,"props":2725,"children":2726},{"style":240},[2727],{"type":58,"value":2728},"push",{"type":53,"tag":227,"props":2730,"children":2731},{"style":343},[2732],{"type":58,"value":565},{"type":53,"tag":227,"props":2734,"children":2735},{"style":240},[2736],{"type":58,"value":2737}," pull_request",{"type":53,"tag":227,"props":2739,"children":2740},{"style":343},[2741],{"type":58,"value":583},{"type":53,"tag":227,"props":2743,"children":2744},{"class":229,"line":256},[2745],{"type":53,"tag":227,"props":2746,"children":2747},{"emptyLinePlaceholder":2159},[2748],{"type":58,"value":2162},{"type":53,"tag":227,"props":2750,"children":2751},{"class":229,"line":280},[2752,2757],{"type":53,"tag":227,"props":2753,"children":2754},{"style":2694},[2755],{"type":58,"value":2756},"jobs",{"type":53,"tag":227,"props":2758,"children":2759},{"style":343},[2760],{"type":58,"value":2761},":\n",{"type":53,"tag":227,"props":2763,"children":2764},{"class":229,"line":38},[2765,2770],{"type":53,"tag":227,"props":2766,"children":2767},{"style":2694},[2768],{"type":58,"value":2769},"  build",{"type":53,"tag":227,"props":2771,"children":2772},{"style":343},[2773],{"type":58,"value":2761},{"type":53,"tag":227,"props":2775,"children":2776},{"class":229,"line":481},[2777,2782,2786],{"type":53,"tag":227,"props":2778,"children":2779},{"style":2694},[2780],{"type":58,"value":2781},"    runs-on",{"type":53,"tag":227,"props":2783,"children":2784},{"style":343},[2785],{"type":58,"value":370},{"type":53,"tag":227,"props":2787,"children":2788},{"style":240},[2789],{"type":58,"value":2790}," ubuntu-latest\n",{"type":53,"tag":227,"props":2792,"children":2793},{"class":229,"line":525},[2794,2799],{"type":53,"tag":227,"props":2795,"children":2796},{"style":2694},[2797],{"type":58,"value":2798},"    steps",{"type":53,"tag":227,"props":2800,"children":2801},{"style":343},[2802],{"type":58,"value":2761},{"type":53,"tag":227,"props":2804,"children":2805},{"class":229,"line":586},[2806,2811,2816,2820],{"type":53,"tag":227,"props":2807,"children":2808},{"style":343},[2809],{"type":58,"value":2810},"      -",{"type":53,"tag":227,"props":2812,"children":2813},{"style":2694},[2814],{"type":58,"value":2815}," uses",{"type":53,"tag":227,"props":2817,"children":2818},{"style":343},[2819],{"type":58,"value":370},{"type":53,"tag":227,"props":2821,"children":2822},{"style":240},[2823],{"type":58,"value":2824}," actions\u002Fcheckout@v4\n",{"type":53,"tag":227,"props":2826,"children":2827},{"class":229,"line":595},[2828,2833],{"type":53,"tag":227,"props":2829,"children":2830},{"style":2694},[2831],{"type":58,"value":2832},"        with",{"type":53,"tag":227,"props":2834,"children":2835},{"style":343},[2836],{"type":58,"value":2761},{"type":53,"tag":227,"props":2838,"children":2839},{"class":229,"line":620},[2840,2845,2849,2854],{"type":53,"tag":227,"props":2841,"children":2842},{"style":2694},[2843],{"type":58,"value":2844},"          fetch-depth",{"type":53,"tag":227,"props":2846,"children":2847},{"style":343},[2848],{"type":58,"value":370},{"type":53,"tag":227,"props":2850,"children":2851},{"style":450},[2852],{"type":58,"value":2853}," 0",{"type":53,"tag":227,"props":2855,"children":2856},{"style":250},[2857],{"type":58,"value":2858}," # Required for --affected\n",{"type":53,"tag":227,"props":2860,"children":2861},{"class":229,"line":657},[2862,2866,2870,2874],{"type":53,"tag":227,"props":2863,"children":2864},{"style":343},[2865],{"type":58,"value":2810},{"type":53,"tag":227,"props":2867,"children":2868},{"style":2694},[2869],{"type":58,"value":2815},{"type":53,"tag":227,"props":2871,"children":2872},{"style":343},[2873],{"type":58,"value":370},{"type":53,"tag":227,"props":2875,"children":2876},{"style":240},[2877],{"type":58,"value":2878}," actions\u002Fsetup-node@v4\n",{"type":53,"tag":227,"props":2880,"children":2881},{"class":229,"line":697},[2882,2886],{"type":53,"tag":227,"props":2883,"children":2884},{"style":2694},[2885],{"type":58,"value":2832},{"type":53,"tag":227,"props":2887,"children":2888},{"style":343},[2889],{"type":58,"value":2761},{"type":53,"tag":227,"props":2891,"children":2892},{"class":229,"line":705},[2893,2898,2902],{"type":53,"tag":227,"props":2894,"children":2895},{"style":2694},[2896],{"type":58,"value":2897},"          node-version",{"type":53,"tag":227,"props":2899,"children":2900},{"style":343},[2901],{"type":58,"value":370},{"type":53,"tag":227,"props":2903,"children":2904},{"style":450},[2905],{"type":58,"value":2906}," 22\n",{"type":53,"tag":227,"props":2908,"children":2909},{"class":229,"line":730},[2910,2914,2919,2923],{"type":53,"tag":227,"props":2911,"children":2912},{"style":343},[2913],{"type":58,"value":2810},{"type":53,"tag":227,"props":2915,"children":2916},{"style":2694},[2917],{"type":58,"value":2918}," run",{"type":53,"tag":227,"props":2920,"children":2921},{"style":343},[2922],{"type":58,"value":370},{"type":53,"tag":227,"props":2924,"children":2925},{"style":240},[2926],{"type":58,"value":2927}," npm ci\n",{"type":53,"tag":227,"props":2929,"children":2930},{"class":229,"line":764},[2931,2935,2939,2943],{"type":53,"tag":227,"props":2932,"children":2933},{"style":343},[2934],{"type":58,"value":2810},{"type":53,"tag":227,"props":2936,"children":2937},{"style":2694},[2938],{"type":58,"value":2918},{"type":53,"tag":227,"props":2940,"children":2941},{"style":343},[2942],{"type":58,"value":370},{"type":53,"tag":227,"props":2944,"children":2945},{"style":240},[2946],{"type":58,"value":2947}," turbo build test lint --affected\n",{"type":53,"tag":227,"props":2949,"children":2950},{"class":229,"line":772},[2951,2956],{"type":53,"tag":227,"props":2952,"children":2953},{"style":2694},[2954],{"type":58,"value":2955},"        env",{"type":53,"tag":227,"props":2957,"children":2958},{"style":343},[2959],{"type":58,"value":2761},{"type":53,"tag":227,"props":2961,"children":2962},{"class":229,"line":797},[2963,2968,2972],{"type":53,"tag":227,"props":2964,"children":2965},{"style":2694},[2966],{"type":58,"value":2967},"          TURBO_TOKEN",{"type":53,"tag":227,"props":2969,"children":2970},{"style":343},[2971],{"type":58,"value":370},{"type":53,"tag":227,"props":2973,"children":2974},{"style":240},[2975],{"type":58,"value":2976}," ${{ secrets.TURBO_TOKEN }}\n",{"type":53,"tag":227,"props":2978,"children":2979},{"class":229,"line":823},[2980,2985,2989],{"type":53,"tag":227,"props":2981,"children":2982},{"style":2694},[2983],{"type":58,"value":2984},"          TURBO_TEAM",{"type":53,"tag":227,"props":2986,"children":2987},{"style":343},[2988],{"type":58,"value":370},{"type":53,"tag":227,"props":2990,"children":2991},{"style":240},[2992],{"type":58,"value":2993}," ${{ vars.TURBO_TEAM }}\n",{"type":53,"tag":227,"props":2995,"children":2996},{"class":229,"line":849},[2997],{"type":53,"tag":227,"props":2998,"children":2999},{"emptyLinePlaceholder":2159},[3000],{"type":58,"value":2162},{"type":53,"tag":227,"props":3002,"children":3003},{"class":229,"line":858},[3004,3009],{"type":53,"tag":227,"props":3005,"children":3006},{"style":2694},[3007],{"type":58,"value":3008},"  deploy-web",{"type":53,"tag":227,"props":3010,"children":3011},{"style":343},[3012],{"type":58,"value":2761},{"type":53,"tag":227,"props":3014,"children":3015},{"class":229,"line":867},[3016,3021,3025],{"type":53,"tag":227,"props":3017,"children":3018},{"style":2694},[3019],{"type":58,"value":3020},"    needs",{"type":53,"tag":227,"props":3022,"children":3023},{"style":343},[3024],{"type":58,"value":370},{"type":53,"tag":227,"props":3026,"children":3027},{"style":240},[3028],{"type":58,"value":3029}," build\n",{"type":53,"tag":227,"props":3031,"children":3032},{"class":229,"line":1576},[3033,3038,3042],{"type":53,"tag":227,"props":3034,"children":3035},{"style":2694},[3036],{"type":58,"value":3037},"    if",{"type":53,"tag":227,"props":3039,"children":3040},{"style":343},[3041],{"type":58,"value":370},{"type":53,"tag":227,"props":3043,"children":3044},{"style":240},[3045],{"type":58,"value":3046}," github.ref == 'refs\u002Fheads\u002Fmain'\n",{"type":53,"tag":227,"props":3048,"children":3049},{"class":229,"line":1633},[3050,3054,3058],{"type":53,"tag":227,"props":3051,"children":3052},{"style":2694},[3053],{"type":58,"value":2781},{"type":53,"tag":227,"props":3055,"children":3056},{"style":343},[3057],{"type":58,"value":370},{"type":53,"tag":227,"props":3059,"children":3060},{"style":240},[3061],{"type":58,"value":2790},{"type":53,"tag":227,"props":3063,"children":3064},{"class":229,"line":1641},[3065,3069],{"type":53,"tag":227,"props":3066,"children":3067},{"style":2694},[3068],{"type":58,"value":2798},{"type":53,"tag":227,"props":3070,"children":3071},{"style":343},[3072],{"type":58,"value":2761},{"type":53,"tag":227,"props":3074,"children":3075},{"class":229,"line":1666},[3076,3080,3084,3088],{"type":53,"tag":227,"props":3077,"children":3078},{"style":343},[3079],{"type":58,"value":2810},{"type":53,"tag":227,"props":3081,"children":3082},{"style":2694},[3083],{"type":58,"value":2815},{"type":53,"tag":227,"props":3085,"children":3086},{"style":343},[3087],{"type":58,"value":370},{"type":53,"tag":227,"props":3089,"children":3090},{"style":240},[3091],{"type":58,"value":2824},{"type":53,"tag":227,"props":3093,"children":3094},{"class":229,"line":1706},[3095,3099,3103,3107],{"type":53,"tag":227,"props":3096,"children":3097},{"style":343},[3098],{"type":58,"value":2810},{"type":53,"tag":227,"props":3100,"children":3101},{"style":2694},[3102],{"type":58,"value":2918},{"type":53,"tag":227,"props":3104,"children":3105},{"style":343},[3106],{"type":58,"value":370},{"type":53,"tag":227,"props":3108,"children":3109},{"style":240},[3110],{"type":58,"value":2927},{"type":53,"tag":227,"props":3112,"children":3113},{"class":229,"line":1762},[3114,3118,3122,3126],{"type":53,"tag":227,"props":3115,"children":3116},{"style":343},[3117],{"type":58,"value":2810},{"type":53,"tag":227,"props":3119,"children":3120},{"style":2694},[3121],{"type":58,"value":2918},{"type":53,"tag":227,"props":3123,"children":3124},{"style":343},[3125],{"type":58,"value":370},{"type":53,"tag":227,"props":3127,"children":3128},{"style":240},[3129],{"type":58,"value":3130}," turbo build --filter=web\n",{"type":53,"tag":227,"props":3132,"children":3133},{"class":229,"line":1770},[3134,3138],{"type":53,"tag":227,"props":3135,"children":3136},{"style":2694},[3137],{"type":58,"value":2955},{"type":53,"tag":227,"props":3139,"children":3140},{"style":343},[3141],{"type":58,"value":2761},{"type":53,"tag":227,"props":3143,"children":3144},{"class":229,"line":1795},[3145,3149,3153],{"type":53,"tag":227,"props":3146,"children":3147},{"style":2694},[3148],{"type":58,"value":2967},{"type":53,"tag":227,"props":3150,"children":3151},{"style":343},[3152],{"type":58,"value":370},{"type":53,"tag":227,"props":3154,"children":3155},{"style":240},[3156],{"type":58,"value":2976},{"type":53,"tag":227,"props":3158,"children":3159},{"class":229,"line":1820},[3160,3164,3168],{"type":53,"tag":227,"props":3161,"children":3162},{"style":2694},[3163],{"type":58,"value":2984},{"type":53,"tag":227,"props":3165,"children":3166},{"style":343},[3167],{"type":58,"value":370},{"type":53,"tag":227,"props":3169,"children":3170},{"style":240},[3171],{"type":58,"value":2993},{"type":53,"tag":323,"props":3173,"children":3175},{"id":3174},"dynamic-matrix-from-workspace-list",[3176],{"type":58,"value":3177},"Dynamic matrix from workspace list",{"type":53,"tag":216,"props":3179,"children":3181},{"className":2682,"code":3180,"language":2684,"meta":221,"style":221},"jobs:\n  detect:\n    runs-on: ubuntu-latest\n    outputs:\n      packages: ${{ steps.list.outputs.packages }}\n    steps:\n      - uses: actions\u002Fcheckout@v4\n      - id: list\n        run: |\n          PACKAGES=$(turbo ls --affected --output=json | jq -c '[.[].name]')\n          echo \"packages=$PACKAGES\" >> \"$GITHUB_OUTPUT\"\n\n  test:\n    needs: detect\n    if: needs.detect.outputs.packages != '[]'\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        package: ${{ fromJson(needs.detect.outputs.packages) }}\n    steps:\n      - uses: actions\u002Fcheckout@v4\n      - run: npm ci\n      - run: turbo test --filter=${{ matrix.package }}\n",[3182],{"type":53,"tag":119,"props":3183,"children":3184},{"__ignoreMap":221},[3185,3196,3208,3223,3235,3252,3263,3282,3303,3321,3329,3337,3344,3356,3372,3388,3403,3415,3427,3444,3455,3474,3493],{"type":53,"tag":227,"props":3186,"children":3187},{"class":229,"line":230},[3188,3192],{"type":53,"tag":227,"props":3189,"children":3190},{"style":2694},[3191],{"type":58,"value":2756},{"type":53,"tag":227,"props":3193,"children":3194},{"style":343},[3195],{"type":58,"value":2761},{"type":53,"tag":227,"props":3197,"children":3198},{"class":229,"line":246},[3199,3204],{"type":53,"tag":227,"props":3200,"children":3201},{"style":2694},[3202],{"type":58,"value":3203},"  detect",{"type":53,"tag":227,"props":3205,"children":3206},{"style":343},[3207],{"type":58,"value":2761},{"type":53,"tag":227,"props":3209,"children":3210},{"class":229,"line":256},[3211,3215,3219],{"type":53,"tag":227,"props":3212,"children":3213},{"style":2694},[3214],{"type":58,"value":2781},{"type":53,"tag":227,"props":3216,"children":3217},{"style":343},[3218],{"type":58,"value":370},{"type":53,"tag":227,"props":3220,"children":3221},{"style":240},[3222],{"type":58,"value":2790},{"type":53,"tag":227,"props":3224,"children":3225},{"class":229,"line":280},[3226,3231],{"type":53,"tag":227,"props":3227,"children":3228},{"style":2694},[3229],{"type":58,"value":3230},"    outputs",{"type":53,"tag":227,"props":3232,"children":3233},{"style":343},[3234],{"type":58,"value":2761},{"type":53,"tag":227,"props":3236,"children":3237},{"class":229,"line":38},[3238,3243,3247],{"type":53,"tag":227,"props":3239,"children":3240},{"style":2694},[3241],{"type":58,"value":3242},"      packages",{"type":53,"tag":227,"props":3244,"children":3245},{"style":343},[3246],{"type":58,"value":370},{"type":53,"tag":227,"props":3248,"children":3249},{"style":240},[3250],{"type":58,"value":3251}," ${{ steps.list.outputs.packages }}\n",{"type":53,"tag":227,"props":3253,"children":3254},{"class":229,"line":481},[3255,3259],{"type":53,"tag":227,"props":3256,"children":3257},{"style":2694},[3258],{"type":58,"value":2798},{"type":53,"tag":227,"props":3260,"children":3261},{"style":343},[3262],{"type":58,"value":2761},{"type":53,"tag":227,"props":3264,"children":3265},{"class":229,"line":525},[3266,3270,3274,3278],{"type":53,"tag":227,"props":3267,"children":3268},{"style":343},[3269],{"type":58,"value":2810},{"type":53,"tag":227,"props":3271,"children":3272},{"style":2694},[3273],{"type":58,"value":2815},{"type":53,"tag":227,"props":3275,"children":3276},{"style":343},[3277],{"type":58,"value":370},{"type":53,"tag":227,"props":3279,"children":3280},{"style":240},[3281],{"type":58,"value":2824},{"type":53,"tag":227,"props":3283,"children":3284},{"class":229,"line":586},[3285,3289,3294,3298],{"type":53,"tag":227,"props":3286,"children":3287},{"style":343},[3288],{"type":58,"value":2810},{"type":53,"tag":227,"props":3290,"children":3291},{"style":2694},[3292],{"type":58,"value":3293}," id",{"type":53,"tag":227,"props":3295,"children":3296},{"style":343},[3297],{"type":58,"value":370},{"type":53,"tag":227,"props":3299,"children":3300},{"style":240},[3301],{"type":58,"value":3302}," list\n",{"type":53,"tag":227,"props":3304,"children":3305},{"class":229,"line":595},[3306,3311,3315],{"type":53,"tag":227,"props":3307,"children":3308},{"style":2694},[3309],{"type":58,"value":3310},"        run",{"type":53,"tag":227,"props":3312,"children":3313},{"style":343},[3314],{"type":58,"value":370},{"type":53,"tag":227,"props":3316,"children":3318},{"style":3317},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[3319],{"type":58,"value":3320}," |\n",{"type":53,"tag":227,"props":3322,"children":3323},{"class":229,"line":620},[3324],{"type":53,"tag":227,"props":3325,"children":3326},{"style":240},[3327],{"type":58,"value":3328},"          PACKAGES=$(turbo ls --affected --output=json | jq -c '[.[].name]')\n",{"type":53,"tag":227,"props":3330,"children":3331},{"class":229,"line":657},[3332],{"type":53,"tag":227,"props":3333,"children":3334},{"style":240},[3335],{"type":58,"value":3336},"          echo \"packages=$PACKAGES\" >> \"$GITHUB_OUTPUT\"\n",{"type":53,"tag":227,"props":3338,"children":3339},{"class":229,"line":697},[3340],{"type":53,"tag":227,"props":3341,"children":3342},{"emptyLinePlaceholder":2159},[3343],{"type":58,"value":2162},{"type":53,"tag":227,"props":3345,"children":3346},{"class":229,"line":705},[3347,3352],{"type":53,"tag":227,"props":3348,"children":3349},{"style":2694},[3350],{"type":58,"value":3351},"  test",{"type":53,"tag":227,"props":3353,"children":3354},{"style":343},[3355],{"type":58,"value":2761},{"type":53,"tag":227,"props":3357,"children":3358},{"class":229,"line":730},[3359,3363,3367],{"type":53,"tag":227,"props":3360,"children":3361},{"style":2694},[3362],{"type":58,"value":3020},{"type":53,"tag":227,"props":3364,"children":3365},{"style":343},[3366],{"type":58,"value":370},{"type":53,"tag":227,"props":3368,"children":3369},{"style":240},[3370],{"type":58,"value":3371}," detect\n",{"type":53,"tag":227,"props":3373,"children":3374},{"class":229,"line":764},[3375,3379,3383],{"type":53,"tag":227,"props":3376,"children":3377},{"style":2694},[3378],{"type":58,"value":3037},{"type":53,"tag":227,"props":3380,"children":3381},{"style":343},[3382],{"type":58,"value":370},{"type":53,"tag":227,"props":3384,"children":3385},{"style":240},[3386],{"type":58,"value":3387}," needs.detect.outputs.packages != '[]'\n",{"type":53,"tag":227,"props":3389,"children":3390},{"class":229,"line":772},[3391,3395,3399],{"type":53,"tag":227,"props":3392,"children":3393},{"style":2694},[3394],{"type":58,"value":2781},{"type":53,"tag":227,"props":3396,"children":3397},{"style":343},[3398],{"type":58,"value":370},{"type":53,"tag":227,"props":3400,"children":3401},{"style":240},[3402],{"type":58,"value":2790},{"type":53,"tag":227,"props":3404,"children":3405},{"class":229,"line":797},[3406,3411],{"type":53,"tag":227,"props":3407,"children":3408},{"style":2694},[3409],{"type":58,"value":3410},"    strategy",{"type":53,"tag":227,"props":3412,"children":3413},{"style":343},[3414],{"type":58,"value":2761},{"type":53,"tag":227,"props":3416,"children":3417},{"class":229,"line":823},[3418,3423],{"type":53,"tag":227,"props":3419,"children":3420},{"style":2694},[3421],{"type":58,"value":3422},"      matrix",{"type":53,"tag":227,"props":3424,"children":3425},{"style":343},[3426],{"type":58,"value":2761},{"type":53,"tag":227,"props":3428,"children":3429},{"class":229,"line":849},[3430,3435,3439],{"type":53,"tag":227,"props":3431,"children":3432},{"style":2694},[3433],{"type":58,"value":3434},"        package",{"type":53,"tag":227,"props":3436,"children":3437},{"style":343},[3438],{"type":58,"value":370},{"type":53,"tag":227,"props":3440,"children":3441},{"style":240},[3442],{"type":58,"value":3443}," ${{ fromJson(needs.detect.outputs.packages) }}\n",{"type":53,"tag":227,"props":3445,"children":3446},{"class":229,"line":858},[3447,3451],{"type":53,"tag":227,"props":3448,"children":3449},{"style":2694},[3450],{"type":58,"value":2798},{"type":53,"tag":227,"props":3452,"children":3453},{"style":343},[3454],{"type":58,"value":2761},{"type":53,"tag":227,"props":3456,"children":3457},{"class":229,"line":867},[3458,3462,3466,3470],{"type":53,"tag":227,"props":3459,"children":3460},{"style":343},[3461],{"type":58,"value":2810},{"type":53,"tag":227,"props":3463,"children":3464},{"style":2694},[3465],{"type":58,"value":2815},{"type":53,"tag":227,"props":3467,"children":3468},{"style":343},[3469],{"type":58,"value":370},{"type":53,"tag":227,"props":3471,"children":3472},{"style":240},[3473],{"type":58,"value":2824},{"type":53,"tag":227,"props":3475,"children":3476},{"class":229,"line":1576},[3477,3481,3485,3489],{"type":53,"tag":227,"props":3478,"children":3479},{"style":343},[3480],{"type":58,"value":2810},{"type":53,"tag":227,"props":3482,"children":3483},{"style":2694},[3484],{"type":58,"value":2918},{"type":53,"tag":227,"props":3486,"children":3487},{"style":343},[3488],{"type":58,"value":370},{"type":53,"tag":227,"props":3490,"children":3491},{"style":240},[3492],{"type":58,"value":2927},{"type":53,"tag":227,"props":3494,"children":3495},{"class":229,"line":1633},[3496,3500,3504,3508],{"type":53,"tag":227,"props":3497,"children":3498},{"style":343},[3499],{"type":58,"value":2810},{"type":53,"tag":227,"props":3501,"children":3502},{"style":2694},[3503],{"type":58,"value":2918},{"type":53,"tag":227,"props":3505,"children":3506},{"style":343},[3507],{"type":58,"value":370},{"type":53,"tag":227,"props":3509,"children":3510},{"style":240},[3511],{"type":58,"value":3512}," turbo test --filter=${{ matrix.package }}\n",{"type":53,"tag":323,"props":3514,"children":3516},{"id":3515},"remote-caching-in-ci",[3517],{"type":58,"value":3518},"Remote caching in CI",{"type":53,"tag":216,"props":3520,"children":3522},{"className":218,"code":3521,"language":220,"meta":221,"style":221},"# Set in CI environment\nTURBO_TOKEN=your-vercel-token\nTURBO_TEAM=your-vercel-team\n\n# Builds automatically use remote cache\nturbo build\n",[3523],{"type":53,"tag":119,"props":3524,"children":3525},{"__ignoreMap":221},[3526,3534,3553,3570,3577,3585],{"type":53,"tag":227,"props":3527,"children":3528},{"class":229,"line":230},[3529],{"type":53,"tag":227,"props":3530,"children":3531},{"style":250},[3532],{"type":58,"value":3533},"# Set in CI environment\n",{"type":53,"tag":227,"props":3535,"children":3536},{"class":229,"line":246},[3537,3543,3548],{"type":53,"tag":227,"props":3538,"children":3540},{"style":3539},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[3541],{"type":58,"value":3542},"TURBO_TOKEN",{"type":53,"tag":227,"props":3544,"children":3545},{"style":343},[3546],{"type":58,"value":3547},"=",{"type":53,"tag":227,"props":3549,"children":3550},{"style":240},[3551],{"type":58,"value":3552},"your-vercel-token\n",{"type":53,"tag":227,"props":3554,"children":3555},{"class":229,"line":256},[3556,3561,3565],{"type":53,"tag":227,"props":3557,"children":3558},{"style":3539},[3559],{"type":58,"value":3560},"TURBO_TEAM",{"type":53,"tag":227,"props":3562,"children":3563},{"style":343},[3564],{"type":58,"value":3547},{"type":53,"tag":227,"props":3566,"children":3567},{"style":240},[3568],{"type":58,"value":3569},"your-vercel-team\n",{"type":53,"tag":227,"props":3571,"children":3572},{"class":229,"line":280},[3573],{"type":53,"tag":227,"props":3574,"children":3575},{"emptyLinePlaceholder":2159},[3576],{"type":58,"value":2162},{"type":53,"tag":227,"props":3578,"children":3579},{"class":229,"line":38},[3580],{"type":53,"tag":227,"props":3581,"children":3582},{"style":250},[3583],{"type":58,"value":3584},"# Builds automatically use remote cache\n",{"type":53,"tag":227,"props":3586,"children":3587},{"class":229,"line":481},[3588,3592],{"type":53,"tag":227,"props":3589,"children":3590},{"style":234},[3591],{"type":58,"value":2143},{"type":53,"tag":227,"props":3593,"children":3594},{"style":240},[3595],{"type":58,"value":3029},{"type":53,"tag":66,"props":3597,"children":3599},{"id":3598},"watch-mode",[3600],{"type":58,"value":3601},"Watch Mode",{"type":53,"tag":60,"props":3603,"children":3604},{},[3605],{"type":58,"value":3606},"Run tasks in watch mode for development — re-executes when source files change:",{"type":53,"tag":216,"props":3608,"children":3610},{"className":218,"code":3609,"language":220,"meta":221,"style":221},"# Watch a specific task\nturbo watch test\n\n# Watch with a filter\nturbo watch test --filter=web\n\n# Watch multiple tasks\nturbo watch test lint\n",[3611],{"type":53,"tag":119,"props":3612,"children":3613},{"__ignoreMap":221},[3614,3622,3639,3646,3654,3674,3681,3689],{"type":53,"tag":227,"props":3615,"children":3616},{"class":229,"line":230},[3617],{"type":53,"tag":227,"props":3618,"children":3619},{"style":250},[3620],{"type":58,"value":3621},"# Watch a specific task\n",{"type":53,"tag":227,"props":3623,"children":3624},{"class":229,"line":246},[3625,3629,3634],{"type":53,"tag":227,"props":3626,"children":3627},{"style":234},[3628],{"type":58,"value":2143},{"type":53,"tag":227,"props":3630,"children":3631},{"style":240},[3632],{"type":58,"value":3633}," watch",{"type":53,"tag":227,"props":3635,"children":3636},{"style":240},[3637],{"type":58,"value":3638}," test\n",{"type":53,"tag":227,"props":3640,"children":3641},{"class":229,"line":256},[3642],{"type":53,"tag":227,"props":3643,"children":3644},{"emptyLinePlaceholder":2159},[3645],{"type":58,"value":2162},{"type":53,"tag":227,"props":3647,"children":3648},{"class":229,"line":280},[3649],{"type":53,"tag":227,"props":3650,"children":3651},{"style":250},[3652],{"type":58,"value":3653},"# Watch with a filter\n",{"type":53,"tag":227,"props":3655,"children":3656},{"class":229,"line":38},[3657,3661,3665,3670],{"type":53,"tag":227,"props":3658,"children":3659},{"style":234},[3660],{"type":58,"value":2143},{"type":53,"tag":227,"props":3662,"children":3663},{"style":240},[3664],{"type":58,"value":3633},{"type":53,"tag":227,"props":3666,"children":3667},{"style":240},[3668],{"type":58,"value":3669}," test",{"type":53,"tag":227,"props":3671,"children":3672},{"style":240},[3673],{"type":58,"value":2153},{"type":53,"tag":227,"props":3675,"children":3676},{"class":229,"line":481},[3677],{"type":53,"tag":227,"props":3678,"children":3679},{"emptyLinePlaceholder":2159},[3680],{"type":58,"value":2162},{"type":53,"tag":227,"props":3682,"children":3683},{"class":229,"line":525},[3684],{"type":53,"tag":227,"props":3685,"children":3686},{"style":250},[3687],{"type":58,"value":3688},"# Watch multiple tasks\n",{"type":53,"tag":227,"props":3690,"children":3691},{"class":229,"line":586},[3692,3696,3700,3704],{"type":53,"tag":227,"props":3693,"children":3694},{"style":234},[3695],{"type":58,"value":2143},{"type":53,"tag":227,"props":3697,"children":3698},{"style":240},[3699],{"type":58,"value":3633},{"type":53,"tag":227,"props":3701,"children":3702},{"style":240},[3703],{"type":58,"value":3669},{"type":53,"tag":227,"props":3705,"children":3706},{"style":240},[3707],{"type":58,"value":3708}," lint\n",{"type":53,"tag":60,"props":3710,"children":3711},{},[3712,3714,3719,3721,3726,3728,3733,3735,3740],{"type":58,"value":3713},"Watch mode respects the task graph — if ",{"type":53,"tag":119,"props":3715,"children":3717},{"className":3716},[],[3718],{"type":58,"value":605},{"type":58,"value":3720}," depends on ",{"type":53,"tag":119,"props":3722,"children":3724},{"className":3723},[],[3725],{"type":58,"value":427},{"type":58,"value":3727},", changing a source file re-runs ",{"type":53,"tag":119,"props":3729,"children":3731},{"className":3730},[],[3732],{"type":58,"value":427},{"type":58,"value":3734}," first, then ",{"type":53,"tag":119,"props":3736,"children":3738},{"className":3737},[],[3739],{"type":58,"value":605},{"type":58,"value":3741},".",{"type":53,"tag":323,"props":3743,"children":3745},{"id":3744},"persistent-tasks-vs-watch",[3746],{"type":58,"value":3747},"Persistent tasks vs watch",{"type":53,"tag":73,"props":3749,"children":3750},{},[3751,3769],{"type":53,"tag":77,"props":3752,"children":3753},{},[3754,3759,3761,3767],{"type":53,"tag":119,"props":3755,"children":3757},{"className":3756},[],[3758],{"type":58,"value":2087},{"type":58,"value":3760}," in turbo.json: The task itself is long-running (e.g., ",{"type":53,"tag":119,"props":3762,"children":3764},{"className":3763},[],[3765],{"type":58,"value":3766},"next dev",{"type":58,"value":3768},"). Turbo starts it and keeps it alive.",{"type":53,"tag":77,"props":3770,"children":3771},{},[3772,3778,3780,3786,3788,3794],{"type":53,"tag":119,"props":3773,"children":3775},{"className":3774},[],[3776],{"type":58,"value":3777},"turbo watch",{"type":58,"value":3779},": Turbo re-invokes the task on file changes. Use for tasks that run and exit (e.g., ",{"type":53,"tag":119,"props":3781,"children":3783},{"className":3782},[],[3784],{"type":58,"value":3785},"vitest run",{"type":58,"value":3787},", ",{"type":53,"tag":119,"props":3789,"children":3791},{"className":3790},[],[3792],{"type":58,"value":3793},"tsc --noEmit",{"type":58,"value":3795},").",{"type":53,"tag":66,"props":3797,"children":3799},{"id":3798},"boundary-rules",[3800],{"type":58,"value":3801},"Boundary Rules",{"type":53,"tag":60,"props":3803,"children":3804},{},[3805,3807,3813],{"type":58,"value":3806},"Enforce architectural constraints across your monorepo with ",{"type":53,"tag":119,"props":3808,"children":3810},{"className":3809},[],[3811],{"type":58,"value":3812},"boundaries",{"type":58,"value":3814}," in turbo.json:",{"type":53,"tag":216,"props":3816,"children":3818},{"className":331,"code":3817,"language":333,"meta":221,"style":221},"{\n  \"boundaries\": {\n    \"tags\": {\n      \"apps\u002F*\": [\"app\"],\n      \"packages\u002Fui\": [\"shared\", \"ui\"],\n      \"packages\u002Futils\": [\"shared\"],\n      \"packages\u002Fconfig\": [\"config\"]\n    },\n    \"rules\": [\n      {\n        \"from\": [\"app\"],\n        \"allow\": [\"shared\"]\n      },\n      {\n        \"from\": [\"shared\"],\n        \"deny\": [\"app\"]\n      }\n    ]\n  }\n}\n",[3819],{"type":53,"tag":119,"props":3820,"children":3821},{"__ignoreMap":221},[3822,3829,3852,3876,3917,3975,4015,4056,4063,4088,4096,4137,4177,4185,4192,4231,4271,4279,4287,4294],{"type":53,"tag":227,"props":3823,"children":3824},{"class":229,"line":230},[3825],{"type":53,"tag":227,"props":3826,"children":3827},{"style":343},[3828],{"type":58,"value":346},{"type":53,"tag":227,"props":3830,"children":3831},{"class":229,"line":246},[3832,3836,3840,3844,3848],{"type":53,"tag":227,"props":3833,"children":3834},{"style":343},[3835],{"type":58,"value":354},{"type":53,"tag":227,"props":3837,"children":3838},{"style":357},[3839],{"type":58,"value":3812},{"type":53,"tag":227,"props":3841,"children":3842},{"style":343},[3843],{"type":58,"value":365},{"type":53,"tag":227,"props":3845,"children":3846},{"style":343},[3847],{"type":58,"value":370},{"type":53,"tag":227,"props":3849,"children":3850},{"style":343},[3851],{"type":58,"value":414},{"type":53,"tag":227,"props":3853,"children":3854},{"class":229,"line":256},[3855,3859,3864,3868,3872],{"type":53,"tag":227,"props":3856,"children":3857},{"style":343},[3858],{"type":58,"value":422},{"type":53,"tag":227,"props":3860,"children":3861},{"style":234},[3862],{"type":58,"value":3863},"tags",{"type":53,"tag":227,"props":3865,"children":3866},{"style":343},[3867],{"type":58,"value":365},{"type":53,"tag":227,"props":3869,"children":3870},{"style":343},[3871],{"type":58,"value":370},{"type":53,"tag":227,"props":3873,"children":3874},{"style":343},[3875],{"type":58,"value":414},{"type":53,"tag":227,"props":3877,"children":3878},{"class":229,"line":280},[3879,3883,3888,3892,3896,3900,3904,3909,3913],{"type":53,"tag":227,"props":3880,"children":3881},{"style":343},[3882],{"type":58,"value":447},{"type":53,"tag":227,"props":3884,"children":3885},{"style":450},[3886],{"type":58,"value":3887},"apps\u002F*",{"type":53,"tag":227,"props":3889,"children":3890},{"style":343},[3891],{"type":58,"value":365},{"type":53,"tag":227,"props":3893,"children":3894},{"style":343},[3895],{"type":58,"value":370},{"type":53,"tag":227,"props":3897,"children":3898},{"style":343},[3899],{"type":58,"value":504},{"type":53,"tag":227,"props":3901,"children":3902},{"style":343},[3903],{"type":58,"value":365},{"type":53,"tag":227,"props":3905,"children":3906},{"style":240},[3907],{"type":58,"value":3908},"app",{"type":53,"tag":227,"props":3910,"children":3911},{"style":343},[3912],{"type":58,"value":365},{"type":53,"tag":227,"props":3914,"children":3915},{"style":343},[3916],{"type":58,"value":522},{"type":53,"tag":227,"props":3918,"children":3919},{"class":229,"line":38},[3920,3924,3929,3933,3937,3941,3945,3950,3954,3958,3962,3967,3971],{"type":53,"tag":227,"props":3921,"children":3922},{"style":343},[3923],{"type":58,"value":447},{"type":53,"tag":227,"props":3925,"children":3926},{"style":450},[3927],{"type":58,"value":3928},"packages\u002Fui",{"type":53,"tag":227,"props":3930,"children":3931},{"style":343},[3932],{"type":58,"value":365},{"type":53,"tag":227,"props":3934,"children":3935},{"style":343},[3936],{"type":58,"value":370},{"type":53,"tag":227,"props":3938,"children":3939},{"style":343},[3940],{"type":58,"value":504},{"type":53,"tag":227,"props":3942,"children":3943},{"style":343},[3944],{"type":58,"value":365},{"type":53,"tag":227,"props":3946,"children":3947},{"style":240},[3948],{"type":58,"value":3949},"shared",{"type":53,"tag":227,"props":3951,"children":3952},{"style":343},[3953],{"type":58,"value":365},{"type":53,"tag":227,"props":3955,"children":3956},{"style":343},[3957],{"type":58,"value":565},{"type":53,"tag":227,"props":3959,"children":3960},{"style":343},[3961],{"type":58,"value":375},{"type":53,"tag":227,"props":3963,"children":3964},{"style":240},[3965],{"type":58,"value":3966},"ui",{"type":53,"tag":227,"props":3968,"children":3969},{"style":343},[3970],{"type":58,"value":365},{"type":53,"tag":227,"props":3972,"children":3973},{"style":343},[3974],{"type":58,"value":522},{"type":53,"tag":227,"props":3976,"children":3977},{"class":229,"line":481},[3978,3982,3987,3991,3995,3999,4003,4007,4011],{"type":53,"tag":227,"props":3979,"children":3980},{"style":343},[3981],{"type":58,"value":447},{"type":53,"tag":227,"props":3983,"children":3984},{"style":450},[3985],{"type":58,"value":3986},"packages\u002Futils",{"type":53,"tag":227,"props":3988,"children":3989},{"style":343},[3990],{"type":58,"value":365},{"type":53,"tag":227,"props":3992,"children":3993},{"style":343},[3994],{"type":58,"value":370},{"type":53,"tag":227,"props":3996,"children":3997},{"style":343},[3998],{"type":58,"value":504},{"type":53,"tag":227,"props":4000,"children":4001},{"style":343},[4002],{"type":58,"value":365},{"type":53,"tag":227,"props":4004,"children":4005},{"style":240},[4006],{"type":58,"value":3949},{"type":53,"tag":227,"props":4008,"children":4009},{"style":343},[4010],{"type":58,"value":365},{"type":53,"tag":227,"props":4012,"children":4013},{"style":343},[4014],{"type":58,"value":522},{"type":53,"tag":227,"props":4016,"children":4017},{"class":229,"line":525},[4018,4022,4027,4031,4035,4039,4043,4048,4052],{"type":53,"tag":227,"props":4019,"children":4020},{"style":343},[4021],{"type":58,"value":447},{"type":53,"tag":227,"props":4023,"children":4024},{"style":450},[4025],{"type":58,"value":4026},"packages\u002Fconfig",{"type":53,"tag":227,"props":4028,"children":4029},{"style":343},[4030],{"type":58,"value":365},{"type":53,"tag":227,"props":4032,"children":4033},{"style":343},[4034],{"type":58,"value":370},{"type":53,"tag":227,"props":4036,"children":4037},{"style":343},[4038],{"type":58,"value":504},{"type":53,"tag":227,"props":4040,"children":4041},{"style":343},[4042],{"type":58,"value":365},{"type":53,"tag":227,"props":4044,"children":4045},{"style":240},[4046],{"type":58,"value":4047},"config",{"type":53,"tag":227,"props":4049,"children":4050},{"style":343},[4051],{"type":58,"value":365},{"type":53,"tag":227,"props":4053,"children":4054},{"style":343},[4055],{"type":58,"value":583},{"type":53,"tag":227,"props":4057,"children":4058},{"class":229,"line":586},[4059],{"type":53,"tag":227,"props":4060,"children":4061},{"style":343},[4062],{"type":58,"value":592},{"type":53,"tag":227,"props":4064,"children":4065},{"class":229,"line":595},[4066,4070,4075,4079,4083],{"type":53,"tag":227,"props":4067,"children":4068},{"style":343},[4069],{"type":58,"value":422},{"type":53,"tag":227,"props":4071,"children":4072},{"style":234},[4073],{"type":58,"value":4074},"rules",{"type":53,"tag":227,"props":4076,"children":4077},{"style":343},[4078],{"type":58,"value":365},{"type":53,"tag":227,"props":4080,"children":4081},{"style":343},[4082],{"type":58,"value":370},{"type":53,"tag":227,"props":4084,"children":4085},{"style":343},[4086],{"type":58,"value":4087}," [\n",{"type":53,"tag":227,"props":4089,"children":4090},{"class":229,"line":620},[4091],{"type":53,"tag":227,"props":4092,"children":4093},{"style":343},[4094],{"type":58,"value":4095},"      {\n",{"type":53,"tag":227,"props":4097,"children":4098},{"class":229,"line":657},[4099,4104,4109,4113,4117,4121,4125,4129,4133],{"type":53,"tag":227,"props":4100,"children":4101},{"style":343},[4102],{"type":58,"value":4103},"        \"",{"type":53,"tag":227,"props":4105,"children":4106},{"style":450},[4107],{"type":58,"value":4108},"from",{"type":53,"tag":227,"props":4110,"children":4111},{"style":343},[4112],{"type":58,"value":365},{"type":53,"tag":227,"props":4114,"children":4115},{"style":343},[4116],{"type":58,"value":370},{"type":53,"tag":227,"props":4118,"children":4119},{"style":343},[4120],{"type":58,"value":504},{"type":53,"tag":227,"props":4122,"children":4123},{"style":343},[4124],{"type":58,"value":365},{"type":53,"tag":227,"props":4126,"children":4127},{"style":240},[4128],{"type":58,"value":3908},{"type":53,"tag":227,"props":4130,"children":4131},{"style":343},[4132],{"type":58,"value":365},{"type":53,"tag":227,"props":4134,"children":4135},{"style":343},[4136],{"type":58,"value":522},{"type":53,"tag":227,"props":4138,"children":4139},{"class":229,"line":697},[4140,4144,4149,4153,4157,4161,4165,4169,4173],{"type":53,"tag":227,"props":4141,"children":4142},{"style":343},[4143],{"type":58,"value":4103},{"type":53,"tag":227,"props":4145,"children":4146},{"style":450},[4147],{"type":58,"value":4148},"allow",{"type":53,"tag":227,"props":4150,"children":4151},{"style":343},[4152],{"type":58,"value":365},{"type":53,"tag":227,"props":4154,"children":4155},{"style":343},[4156],{"type":58,"value":370},{"type":53,"tag":227,"props":4158,"children":4159},{"style":343},[4160],{"type":58,"value":504},{"type":53,"tag":227,"props":4162,"children":4163},{"style":343},[4164],{"type":58,"value":365},{"type":53,"tag":227,"props":4166,"children":4167},{"style":240},[4168],{"type":58,"value":3949},{"type":53,"tag":227,"props":4170,"children":4171},{"style":343},[4172],{"type":58,"value":365},{"type":53,"tag":227,"props":4174,"children":4175},{"style":343},[4176],{"type":58,"value":583},{"type":53,"tag":227,"props":4178,"children":4179},{"class":229,"line":705},[4180],{"type":53,"tag":227,"props":4181,"children":4182},{"style":343},[4183],{"type":58,"value":4184},"      },\n",{"type":53,"tag":227,"props":4186,"children":4187},{"class":229,"line":730},[4188],{"type":53,"tag":227,"props":4189,"children":4190},{"style":343},[4191],{"type":58,"value":4095},{"type":53,"tag":227,"props":4193,"children":4194},{"class":229,"line":764},[4195,4199,4203,4207,4211,4215,4219,4223,4227],{"type":53,"tag":227,"props":4196,"children":4197},{"style":343},[4198],{"type":58,"value":4103},{"type":53,"tag":227,"props":4200,"children":4201},{"style":450},[4202],{"type":58,"value":4108},{"type":53,"tag":227,"props":4204,"children":4205},{"style":343},[4206],{"type":58,"value":365},{"type":53,"tag":227,"props":4208,"children":4209},{"style":343},[4210],{"type":58,"value":370},{"type":53,"tag":227,"props":4212,"children":4213},{"style":343},[4214],{"type":58,"value":504},{"type":53,"tag":227,"props":4216,"children":4217},{"style":343},[4218],{"type":58,"value":365},{"type":53,"tag":227,"props":4220,"children":4221},{"style":240},[4222],{"type":58,"value":3949},{"type":53,"tag":227,"props":4224,"children":4225},{"style":343},[4226],{"type":58,"value":365},{"type":53,"tag":227,"props":4228,"children":4229},{"style":343},[4230],{"type":58,"value":522},{"type":53,"tag":227,"props":4232,"children":4233},{"class":229,"line":772},[4234,4238,4243,4247,4251,4255,4259,4263,4267],{"type":53,"tag":227,"props":4235,"children":4236},{"style":343},[4237],{"type":58,"value":4103},{"type":53,"tag":227,"props":4239,"children":4240},{"style":450},[4241],{"type":58,"value":4242},"deny",{"type":53,"tag":227,"props":4244,"children":4245},{"style":343},[4246],{"type":58,"value":365},{"type":53,"tag":227,"props":4248,"children":4249},{"style":343},[4250],{"type":58,"value":370},{"type":53,"tag":227,"props":4252,"children":4253},{"style":343},[4254],{"type":58,"value":504},{"type":53,"tag":227,"props":4256,"children":4257},{"style":343},[4258],{"type":58,"value":365},{"type":53,"tag":227,"props":4260,"children":4261},{"style":240},[4262],{"type":58,"value":3908},{"type":53,"tag":227,"props":4264,"children":4265},{"style":343},[4266],{"type":58,"value":365},{"type":53,"tag":227,"props":4268,"children":4269},{"style":343},[4270],{"type":58,"value":583},{"type":53,"tag":227,"props":4272,"children":4273},{"class":229,"line":797},[4274],{"type":53,"tag":227,"props":4275,"children":4276},{"style":343},[4277],{"type":58,"value":4278},"      }\n",{"type":53,"tag":227,"props":4280,"children":4281},{"class":229,"line":823},[4282],{"type":53,"tag":227,"props":4283,"children":4284},{"style":343},[4285],{"type":58,"value":4286},"    ]\n",{"type":53,"tag":227,"props":4288,"children":4289},{"class":229,"line":849},[4290],{"type":53,"tag":227,"props":4291,"children":4292},{"style":343},[4293],{"type":58,"value":864},{"type":53,"tag":227,"props":4295,"children":4296},{"class":229,"line":858},[4297],{"type":53,"tag":227,"props":4298,"children":4299},{"style":343},[4300],{"type":58,"value":873},{"type":53,"tag":60,"props":4302,"children":4303},{},[4304],{"type":58,"value":4305},"This enforces:",{"type":53,"tag":73,"props":4307,"children":4308},{},[4309,4314,4319],{"type":53,"tag":77,"props":4310,"children":4311},{},[4312],{"type":58,"value":4313},"Apps can import shared packages",{"type":53,"tag":77,"props":4315,"children":4316},{},[4317],{"type":58,"value":4318},"Shared packages cannot import from apps",{"type":53,"tag":77,"props":4320,"children":4321},{},[4322,4324],{"type":58,"value":4323},"Violations produce build-time errors with ",{"type":53,"tag":119,"props":4325,"children":4327},{"className":4326},[],[4328],{"type":58,"value":4329},"turbo boundaries",{"type":53,"tag":216,"props":4331,"children":4333},{"className":218,"code":4332,"language":220,"meta":221,"style":221},"# Check boundary compliance\nturbo boundaries\n\n# Add to your pipeline\n{\n  \"tasks\": {\n    \"check\": {\n      \"dependsOn\": [\"lint\", \"typecheck\", \"boundaries\"]\n    },\n    \"boundaries\": {}\n  }\n}\n",[4334],{"type":53,"tag":119,"props":4335,"children":4336},{"__ignoreMap":221},[4337,4345,4357,4364,4372,4379,4396,4412,4476,4488,4505,4512],{"type":53,"tag":227,"props":4338,"children":4339},{"class":229,"line":230},[4340],{"type":53,"tag":227,"props":4341,"children":4342},{"style":250},[4343],{"type":58,"value":4344},"# Check boundary compliance\n",{"type":53,"tag":227,"props":4346,"children":4347},{"class":229,"line":246},[4348,4352],{"type":53,"tag":227,"props":4349,"children":4350},{"style":234},[4351],{"type":58,"value":2143},{"type":53,"tag":227,"props":4353,"children":4354},{"style":240},[4355],{"type":58,"value":4356}," boundaries\n",{"type":53,"tag":227,"props":4358,"children":4359},{"class":229,"line":256},[4360],{"type":53,"tag":227,"props":4361,"children":4362},{"emptyLinePlaceholder":2159},[4363],{"type":58,"value":2162},{"type":53,"tag":227,"props":4365,"children":4366},{"class":229,"line":280},[4367],{"type":53,"tag":227,"props":4368,"children":4369},{"style":250},[4370],{"type":58,"value":4371},"# Add to your pipeline\n",{"type":53,"tag":227,"props":4373,"children":4374},{"class":229,"line":38},[4375],{"type":53,"tag":227,"props":4376,"children":4377},{"style":343},[4378],{"type":58,"value":346},{"type":53,"tag":227,"props":4380,"children":4381},{"class":229,"line":481},[4382,4387,4392],{"type":53,"tag":227,"props":4383,"children":4384},{"style":234},[4385],{"type":58,"value":4386},"  \"tasks\"",{"type":53,"tag":227,"props":4388,"children":4390},{"style":4389},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[4391],{"type":58,"value":370},{"type":53,"tag":227,"props":4393,"children":4394},{"style":240},[4395],{"type":58,"value":414},{"type":53,"tag":227,"props":4397,"children":4398},{"class":229,"line":525},[4399,4404,4408],{"type":53,"tag":227,"props":4400,"children":4401},{"style":234},[4402],{"type":58,"value":4403},"    \"check\"",{"type":53,"tag":227,"props":4405,"children":4406},{"style":4389},[4407],{"type":58,"value":370},{"type":53,"tag":227,"props":4409,"children":4410},{"style":240},[4411],{"type":58,"value":414},{"type":53,"tag":227,"props":4413,"children":4414},{"class":229,"line":586},[4415,4420,4424,4428,4432,4436,4440,4444,4448,4452,4456,4460,4464,4468,4472],{"type":53,"tag":227,"props":4416,"children":4417},{"style":234},[4418],{"type":58,"value":4419},"      \"dependsOn\"",{"type":53,"tag":227,"props":4421,"children":4422},{"style":4389},[4423],{"type":58,"value":370},{"type":53,"tag":227,"props":4425,"children":4426},{"style":3539},[4427],{"type":58,"value":504},{"type":53,"tag":227,"props":4429,"children":4430},{"style":343},[4431],{"type":58,"value":365},{"type":53,"tag":227,"props":4433,"children":4434},{"style":240},[4435],{"type":58,"value":715},{"type":53,"tag":227,"props":4437,"children":4438},{"style":343},[4439],{"type":58,"value":365},{"type":53,"tag":227,"props":4441,"children":4442},{"style":3539},[4443],{"type":58,"value":3787},{"type":53,"tag":227,"props":4445,"children":4446},{"style":343},[4447],{"type":58,"value":365},{"type":53,"tag":227,"props":4449,"children":4450},{"style":240},[4451],{"type":58,"value":1651},{"type":53,"tag":227,"props":4453,"children":4454},{"style":343},[4455],{"type":58,"value":365},{"type":53,"tag":227,"props":4457,"children":4458},{"style":240},[4459],{"type":58,"value":565},{"type":53,"tag":227,"props":4461,"children":4462},{"style":343},[4463],{"type":58,"value":375},{"type":53,"tag":227,"props":4465,"children":4466},{"style":240},[4467],{"type":58,"value":3812},{"type":53,"tag":227,"props":4469,"children":4470},{"style":343},[4471],{"type":58,"value":365},{"type":53,"tag":227,"props":4473,"children":4474},{"style":240},[4475],{"type":58,"value":583},{"type":53,"tag":227,"props":4477,"children":4478},{"class":229,"line":595},[4479,4484],{"type":53,"tag":227,"props":4480,"children":4481},{"style":343},[4482],{"type":58,"value":4483},"    }",{"type":53,"tag":227,"props":4485,"children":4486},{"style":3539},[4487],{"type":58,"value":389},{"type":53,"tag":227,"props":4489,"children":4490},{"class":229,"line":620},[4491,4496,4500],{"type":53,"tag":227,"props":4492,"children":4493},{"style":234},[4494],{"type":58,"value":4495},"    \"boundaries\"",{"type":53,"tag":227,"props":4497,"children":4498},{"style":4389},[4499],{"type":58,"value":370},{"type":53,"tag":227,"props":4501,"children":4502},{"style":240},[4503],{"type":58,"value":4504}," {}\n",{"type":53,"tag":227,"props":4506,"children":4507},{"class":229,"line":657},[4508],{"type":53,"tag":227,"props":4509,"children":4510},{"style":3539},[4511],{"type":58,"value":864},{"type":53,"tag":227,"props":4513,"children":4514},{"class":229,"line":697},[4515],{"type":53,"tag":227,"props":4516,"children":4517},{"style":3539},[4518],{"type":58,"value":873},{"type":53,"tag":66,"props":4520,"children":4522},{"id":4521},"graph-visualization",[4523],{"type":58,"value":4524},"Graph Visualization",{"type":53,"tag":60,"props":4526,"children":4527},{},[4528],{"type":58,"value":4529},"Inspect your task dependency graph:",{"type":53,"tag":216,"props":4531,"children":4533},{"className":218,"code":4532,"language":220,"meta":221,"style":221},"# Print graph to terminal\nturbo build --graph\n\n# Output as DOT format (Graphviz)\nturbo build --graph=graph.dot\n\n# Output as JSON\nturbo build --graph=graph.json\n\n# Open interactive graph in browser\nturbo build --graph=graph.html\n",[4534],{"type":53,"tag":119,"props":4535,"children":4536},{"__ignoreMap":221},[4537,4545,4561,4568,4576,4592,4599,4607,4623,4630,4638],{"type":53,"tag":227,"props":4538,"children":4539},{"class":229,"line":230},[4540],{"type":53,"tag":227,"props":4541,"children":4542},{"style":250},[4543],{"type":58,"value":4544},"# Print graph to terminal\n",{"type":53,"tag":227,"props":4546,"children":4547},{"class":229,"line":246},[4548,4552,4556],{"type":53,"tag":227,"props":4549,"children":4550},{"style":234},[4551],{"type":58,"value":2143},{"type":53,"tag":227,"props":4553,"children":4554},{"style":240},[4555],{"type":58,"value":2148},{"type":53,"tag":227,"props":4557,"children":4558},{"style":240},[4559],{"type":58,"value":4560}," --graph\n",{"type":53,"tag":227,"props":4562,"children":4563},{"class":229,"line":256},[4564],{"type":53,"tag":227,"props":4565,"children":4566},{"emptyLinePlaceholder":2159},[4567],{"type":58,"value":2162},{"type":53,"tag":227,"props":4569,"children":4570},{"class":229,"line":280},[4571],{"type":53,"tag":227,"props":4572,"children":4573},{"style":250},[4574],{"type":58,"value":4575},"# Output as DOT format (Graphviz)\n",{"type":53,"tag":227,"props":4577,"children":4578},{"class":229,"line":38},[4579,4583,4587],{"type":53,"tag":227,"props":4580,"children":4581},{"style":234},[4582],{"type":58,"value":2143},{"type":53,"tag":227,"props":4584,"children":4585},{"style":240},[4586],{"type":58,"value":2148},{"type":53,"tag":227,"props":4588,"children":4589},{"style":240},[4590],{"type":58,"value":4591}," --graph=graph.dot\n",{"type":53,"tag":227,"props":4593,"children":4594},{"class":229,"line":481},[4595],{"type":53,"tag":227,"props":4596,"children":4597},{"emptyLinePlaceholder":2159},[4598],{"type":58,"value":2162},{"type":53,"tag":227,"props":4600,"children":4601},{"class":229,"line":525},[4602],{"type":53,"tag":227,"props":4603,"children":4604},{"style":250},[4605],{"type":58,"value":4606},"# Output as JSON\n",{"type":53,"tag":227,"props":4608,"children":4609},{"class":229,"line":586},[4610,4614,4618],{"type":53,"tag":227,"props":4611,"children":4612},{"style":234},[4613],{"type":58,"value":2143},{"type":53,"tag":227,"props":4615,"children":4616},{"style":240},[4617],{"type":58,"value":2148},{"type":53,"tag":227,"props":4619,"children":4620},{"style":240},[4621],{"type":58,"value":4622}," --graph=graph.json\n",{"type":53,"tag":227,"props":4624,"children":4625},{"class":229,"line":595},[4626],{"type":53,"tag":227,"props":4627,"children":4628},{"emptyLinePlaceholder":2159},[4629],{"type":58,"value":2162},{"type":53,"tag":227,"props":4631,"children":4632},{"class":229,"line":620},[4633],{"type":53,"tag":227,"props":4634,"children":4635},{"style":250},[4636],{"type":58,"value":4637},"# Open interactive graph in browser\n",{"type":53,"tag":227,"props":4639,"children":4640},{"class":229,"line":657},[4641,4645,4649],{"type":53,"tag":227,"props":4642,"children":4643},{"style":234},[4644],{"type":58,"value":2143},{"type":53,"tag":227,"props":4646,"children":4647},{"style":240},[4648],{"type":58,"value":2148},{"type":53,"tag":227,"props":4650,"children":4651},{"style":240},[4652],{"type":58,"value":4653}," --graph=graph.html\n",{"type":53,"tag":323,"props":4655,"children":4657},{"id":4656},"dry-run-see-what-would-execute",[4658],{"type":58,"value":4659},"Dry run — see what would execute",{"type":53,"tag":216,"props":4661,"children":4663},{"className":218,"code":4662,"language":220,"meta":221,"style":221},"# Show tasks that would run without executing them\nturbo build --dry-run\n\n# JSON output for programmatic use\nturbo build --dry-run=json\n",[4664],{"type":53,"tag":119,"props":4665,"children":4666},{"__ignoreMap":221},[4667,4675,4691,4698,4706],{"type":53,"tag":227,"props":4668,"children":4669},{"class":229,"line":230},[4670],{"type":53,"tag":227,"props":4671,"children":4672},{"style":250},[4673],{"type":58,"value":4674},"# Show tasks that would run without executing them\n",{"type":53,"tag":227,"props":4676,"children":4677},{"class":229,"line":246},[4678,4682,4686],{"type":53,"tag":227,"props":4679,"children":4680},{"style":234},[4681],{"type":58,"value":2143},{"type":53,"tag":227,"props":4683,"children":4684},{"style":240},[4685],{"type":58,"value":2148},{"type":53,"tag":227,"props":4687,"children":4688},{"style":240},[4689],{"type":58,"value":4690}," --dry-run\n",{"type":53,"tag":227,"props":4692,"children":4693},{"class":229,"line":256},[4694],{"type":53,"tag":227,"props":4695,"children":4696},{"emptyLinePlaceholder":2159},[4697],{"type":58,"value":2162},{"type":53,"tag":227,"props":4699,"children":4700},{"class":229,"line":280},[4701],{"type":53,"tag":227,"props":4702,"children":4703},{"style":250},[4704],{"type":58,"value":4705},"# JSON output for programmatic use\n",{"type":53,"tag":227,"props":4707,"children":4708},{"class":229,"line":38},[4709,4713,4717],{"type":53,"tag":227,"props":4710,"children":4711},{"style":234},[4712],{"type":58,"value":2143},{"type":53,"tag":227,"props":4714,"children":4715},{"style":240},[4716],{"type":58,"value":2148},{"type":53,"tag":227,"props":4718,"children":4719},{"style":240},[4720],{"type":58,"value":4721}," --dry-run=json\n",{"type":53,"tag":60,"props":4723,"children":4724},{},[4725],{"type":58,"value":4726},"The dry run output shows:",{"type":53,"tag":73,"props":4728,"children":4729},{},[4730,4735,4740,4745],{"type":53,"tag":77,"props":4731,"children":4732},{},[4733],{"type":58,"value":4734},"Each task that would execute",{"type":53,"tag":77,"props":4736,"children":4737},{},[4738],{"type":58,"value":4739},"Cache status (HIT or MISS)",{"type":53,"tag":77,"props":4741,"children":4742},{},[4743],{"type":58,"value":4744},"Dependencies and dependents",{"type":53,"tag":77,"props":4746,"children":4747},{},[4748],{"type":58,"value":4749},"File hash used for caching",{"type":53,"tag":66,"props":4751,"children":4753},{"id":4752},"devtools-docs-28",[4754],{"type":58,"value":4755},"Devtools & Docs (2.8+)",{"type":53,"tag":216,"props":4757,"children":4759},{"className":218,"code":4758,"language":220,"meta":221,"style":221},"# Visual package\u002Ftask graph explorer (hot-reloads on changes)\nturbo devtools\n\n# Search Turborepo docs from the terminal (returns agent-friendly markdown)\nturbo docs\n\n# Upgrade to latest Turborepo\nnpx @turbo\u002Fcodemod migrate\n",[4760],{"type":53,"tag":119,"props":4761,"children":4762},{"__ignoreMap":221},[4763,4771,4783,4790,4798,4810,4817,4825],{"type":53,"tag":227,"props":4764,"children":4765},{"class":229,"line":230},[4766],{"type":53,"tag":227,"props":4767,"children":4768},{"style":250},[4769],{"type":58,"value":4770},"# Visual package\u002Ftask graph explorer (hot-reloads on changes)\n",{"type":53,"tag":227,"props":4772,"children":4773},{"class":229,"line":246},[4774,4778],{"type":53,"tag":227,"props":4775,"children":4776},{"style":234},[4777],{"type":58,"value":2143},{"type":53,"tag":227,"props":4779,"children":4780},{"style":240},[4781],{"type":58,"value":4782}," devtools\n",{"type":53,"tag":227,"props":4784,"children":4785},{"class":229,"line":256},[4786],{"type":53,"tag":227,"props":4787,"children":4788},{"emptyLinePlaceholder":2159},[4789],{"type":58,"value":2162},{"type":53,"tag":227,"props":4791,"children":4792},{"class":229,"line":280},[4793],{"type":53,"tag":227,"props":4794,"children":4795},{"style":250},[4796],{"type":58,"value":4797},"# Search Turborepo docs from the terminal (returns agent-friendly markdown)\n",{"type":53,"tag":227,"props":4799,"children":4800},{"class":229,"line":38},[4801,4805],{"type":53,"tag":227,"props":4802,"children":4803},{"style":234},[4804],{"type":58,"value":2143},{"type":53,"tag":227,"props":4806,"children":4807},{"style":240},[4808],{"type":58,"value":4809}," docs\n",{"type":53,"tag":227,"props":4811,"children":4812},{"class":229,"line":481},[4813],{"type":53,"tag":227,"props":4814,"children":4815},{"emptyLinePlaceholder":2159},[4816],{"type":58,"value":2162},{"type":53,"tag":227,"props":4818,"children":4819},{"class":229,"line":525},[4820],{"type":53,"tag":227,"props":4821,"children":4822},{"style":250},[4823],{"type":58,"value":4824},"# Upgrade to latest Turborepo\n",{"type":53,"tag":227,"props":4826,"children":4827},{"class":229,"line":586},[4828,4832,4836],{"type":53,"tag":227,"props":4829,"children":4830},{"style":234},[4831],{"type":58,"value":237},{"type":53,"tag":227,"props":4833,"children":4834},{"style":240},[4835],{"type":58,"value":298},{"type":53,"tag":227,"props":4837,"children":4838},{"style":240},[4839],{"type":58,"value":303},{"type":53,"tag":4841,"props":4842,"children":4843},"blockquote",{},[4844],{"type":53,"tag":60,"props":4845,"children":4846},{},[4847,4852,4853,4858],{"type":53,"tag":81,"props":4848,"children":4849},{},[4850],{"type":58,"value":4851},"Note",{"type":58,"value":117},{"type":53,"tag":119,"props":4854,"children":4856},{"className":4855},[],[4857],{"type":58,"value":206},{"type":58,"value":4859}," output is optimized for AI coding agents — markdown format preserves context windows. The docs site also includes sample prompts for common tasks you can copy directly into your agent.",{"type":53,"tag":66,"props":4861,"children":4863},{"id":4862},"composable-configuration-27",[4864],{"type":58,"value":4865},"Composable Configuration (2.7+)",{"type":53,"tag":60,"props":4867,"children":4868},{},[4869],{"type":58,"value":4870},"Package configs can now extend from any workspace package, not just the root:",{"type":53,"tag":216,"props":4872,"children":4874},{"className":331,"code":4873,"language":333,"meta":221,"style":221},"\u002F\u002F packages\u002Fui\u002Fturbo.json\n{\n  \"extends\": [\"@myorg\u002Fconfig\"],\n  \"tasks\": {\n    \"build\": {\n      \"outputs\": [\"dist\u002F**\"]\n    }\n  }\n}\n",[4875],{"type":53,"tag":119,"props":4876,"children":4877},{"__ignoreMap":221},[4878,4886,4893,4934,4957,4980,5019,5026,5033],{"type":53,"tag":227,"props":4879,"children":4880},{"class":229,"line":230},[4881],{"type":53,"tag":227,"props":4882,"children":4883},{"style":250},[4884],{"type":58,"value":4885},"\u002F\u002F packages\u002Fui\u002Fturbo.json\n",{"type":53,"tag":227,"props":4887,"children":4888},{"class":229,"line":246},[4889],{"type":53,"tag":227,"props":4890,"children":4891},{"style":343},[4892],{"type":58,"value":346},{"type":53,"tag":227,"props":4894,"children":4895},{"class":229,"line":256},[4896,4900,4905,4909,4913,4917,4921,4926,4930],{"type":53,"tag":227,"props":4897,"children":4898},{"style":343},[4899],{"type":58,"value":354},{"type":53,"tag":227,"props":4901,"children":4902},{"style":357},[4903],{"type":58,"value":4904},"extends",{"type":53,"tag":227,"props":4906,"children":4907},{"style":343},[4908],{"type":58,"value":365},{"type":53,"tag":227,"props":4910,"children":4911},{"style":343},[4912],{"type":58,"value":370},{"type":53,"tag":227,"props":4914,"children":4915},{"style":343},[4916],{"type":58,"value":504},{"type":53,"tag":227,"props":4918,"children":4919},{"style":343},[4920],{"type":58,"value":365},{"type":53,"tag":227,"props":4922,"children":4923},{"style":240},[4924],{"type":58,"value":4925},"@myorg\u002Fconfig",{"type":53,"tag":227,"props":4927,"children":4928},{"style":343},[4929],{"type":58,"value":365},{"type":53,"tag":227,"props":4931,"children":4932},{"style":343},[4933],{"type":58,"value":522},{"type":53,"tag":227,"props":4935,"children":4936},{"class":229,"line":280},[4937,4941,4945,4949,4953],{"type":53,"tag":227,"props":4938,"children":4939},{"style":343},[4940],{"type":58,"value":354},{"type":53,"tag":227,"props":4942,"children":4943},{"style":357},[4944],{"type":58,"value":401},{"type":53,"tag":227,"props":4946,"children":4947},{"style":343},[4948],{"type":58,"value":365},{"type":53,"tag":227,"props":4950,"children":4951},{"style":343},[4952],{"type":58,"value":370},{"type":53,"tag":227,"props":4954,"children":4955},{"style":343},[4956],{"type":58,"value":414},{"type":53,"tag":227,"props":4958,"children":4959},{"class":229,"line":38},[4960,4964,4968,4972,4976],{"type":53,"tag":227,"props":4961,"children":4962},{"style":343},[4963],{"type":58,"value":422},{"type":53,"tag":227,"props":4965,"children":4966},{"style":234},[4967],{"type":58,"value":427},{"type":53,"tag":227,"props":4969,"children":4970},{"style":343},[4971],{"type":58,"value":365},{"type":53,"tag":227,"props":4973,"children":4974},{"style":343},[4975],{"type":58,"value":370},{"type":53,"tag":227,"props":4977,"children":4978},{"style":343},[4979],{"type":58,"value":414},{"type":53,"tag":227,"props":4981,"children":4982},{"class":229,"line":481},[4983,4987,4991,4995,4999,5003,5007,5011,5015],{"type":53,"tag":227,"props":4984,"children":4985},{"style":343},[4986],{"type":58,"value":447},{"type":53,"tag":227,"props":4988,"children":4989},{"style":450},[4990],{"type":58,"value":535},{"type":53,"tag":227,"props":4992,"children":4993},{"style":343},[4994],{"type":58,"value":365},{"type":53,"tag":227,"props":4996,"children":4997},{"style":343},[4998],{"type":58,"value":370},{"type":53,"tag":227,"props":5000,"children":5001},{"style":343},[5002],{"type":58,"value":504},{"type":53,"tag":227,"props":5004,"children":5005},{"style":343},[5006],{"type":58,"value":365},{"type":53,"tag":227,"props":5008,"children":5009},{"style":240},[5010],{"type":58,"value":574},{"type":53,"tag":227,"props":5012,"children":5013},{"style":343},[5014],{"type":58,"value":365},{"type":53,"tag":227,"props":5016,"children":5017},{"style":343},[5018],{"type":58,"value":583},{"type":53,"tag":227,"props":5020,"children":5021},{"class":229,"line":525},[5022],{"type":53,"tag":227,"props":5023,"children":5024},{"style":343},[5025],{"type":58,"value":855},{"type":53,"tag":227,"props":5027,"children":5028},{"class":229,"line":586},[5029],{"type":53,"tag":227,"props":5030,"children":5031},{"style":343},[5032],{"type":58,"value":864},{"type":53,"tag":227,"props":5034,"children":5035},{"class":229,"line":595},[5036],{"type":53,"tag":227,"props":5037,"children":5038},{"style":343},[5039],{"type":58,"value":873},{"type":53,"tag":66,"props":5041,"children":5043},{"id":5042},"common-commands",[5044],{"type":58,"value":5045},"Common Commands",{"type":53,"tag":216,"props":5047,"children":5049},{"className":218,"code":5048,"language":220,"meta":221,"style":221},"# Run build across all packages\nturbo build\n\n# Run only affected packages (changed since main branch)\nturbo build --affected\n\n# Run specific tasks in specific packages\nturbo build --filter=web\n\n# Run with remote caching\nturbo build --remote-cache\n\n# Prune monorepo for a single app deployment\nturbo prune web --docker\n\n# List all packages\nturbo ls\n\n# List affected packages\nturbo ls --affected\n",[5050],{"type":53,"tag":119,"props":5051,"children":5052},{"__ignoreMap":221},[5053,5061,5072,5079,5087,5103,5110,5118,5133,5140,5148,5164,5171,5179,5201,5208,5216,5228,5235,5243],{"type":53,"tag":227,"props":5054,"children":5055},{"class":229,"line":230},[5056],{"type":53,"tag":227,"props":5057,"children":5058},{"style":250},[5059],{"type":58,"value":5060},"# Run build across all packages\n",{"type":53,"tag":227,"props":5062,"children":5063},{"class":229,"line":246},[5064,5068],{"type":53,"tag":227,"props":5065,"children":5066},{"style":234},[5067],{"type":58,"value":2143},{"type":53,"tag":227,"props":5069,"children":5070},{"style":240},[5071],{"type":58,"value":3029},{"type":53,"tag":227,"props":5073,"children":5074},{"class":229,"line":256},[5075],{"type":53,"tag":227,"props":5076,"children":5077},{"emptyLinePlaceholder":2159},[5078],{"type":58,"value":2162},{"type":53,"tag":227,"props":5080,"children":5081},{"class":229,"line":280},[5082],{"type":53,"tag":227,"props":5083,"children":5084},{"style":250},[5085],{"type":58,"value":5086},"# Run only affected packages (changed since main branch)\n",{"type":53,"tag":227,"props":5088,"children":5089},{"class":229,"line":38},[5090,5094,5098],{"type":53,"tag":227,"props":5091,"children":5092},{"style":234},[5093],{"type":58,"value":2143},{"type":53,"tag":227,"props":5095,"children":5096},{"style":240},[5097],{"type":58,"value":2148},{"type":53,"tag":227,"props":5099,"children":5100},{"style":240},[5101],{"type":58,"value":5102}," --affected\n",{"type":53,"tag":227,"props":5104,"children":5105},{"class":229,"line":481},[5106],{"type":53,"tag":227,"props":5107,"children":5108},{"emptyLinePlaceholder":2159},[5109],{"type":58,"value":2162},{"type":53,"tag":227,"props":5111,"children":5112},{"class":229,"line":525},[5113],{"type":53,"tag":227,"props":5114,"children":5115},{"style":250},[5116],{"type":58,"value":5117},"# Run specific tasks in specific packages\n",{"type":53,"tag":227,"props":5119,"children":5120},{"class":229,"line":586},[5121,5125,5129],{"type":53,"tag":227,"props":5122,"children":5123},{"style":234},[5124],{"type":58,"value":2143},{"type":53,"tag":227,"props":5126,"children":5127},{"style":240},[5128],{"type":58,"value":2148},{"type":53,"tag":227,"props":5130,"children":5131},{"style":240},[5132],{"type":58,"value":2153},{"type":53,"tag":227,"props":5134,"children":5135},{"class":229,"line":595},[5136],{"type":53,"tag":227,"props":5137,"children":5138},{"emptyLinePlaceholder":2159},[5139],{"type":58,"value":2162},{"type":53,"tag":227,"props":5141,"children":5142},{"class":229,"line":620},[5143],{"type":53,"tag":227,"props":5144,"children":5145},{"style":250},[5146],{"type":58,"value":5147},"# Run with remote caching\n",{"type":53,"tag":227,"props":5149,"children":5150},{"class":229,"line":657},[5151,5155,5159],{"type":53,"tag":227,"props":5152,"children":5153},{"style":234},[5154],{"type":58,"value":2143},{"type":53,"tag":227,"props":5156,"children":5157},{"style":240},[5158],{"type":58,"value":2148},{"type":53,"tag":227,"props":5160,"children":5161},{"style":240},[5162],{"type":58,"value":5163}," --remote-cache\n",{"type":53,"tag":227,"props":5165,"children":5166},{"class":229,"line":697},[5167],{"type":53,"tag":227,"props":5168,"children":5169},{"emptyLinePlaceholder":2159},[5170],{"type":58,"value":2162},{"type":53,"tag":227,"props":5172,"children":5173},{"class":229,"line":705},[5174],{"type":53,"tag":227,"props":5175,"children":5176},{"style":250},[5177],{"type":58,"value":5178},"# Prune monorepo for a single app deployment\n",{"type":53,"tag":227,"props":5180,"children":5181},{"class":229,"line":730},[5182,5186,5191,5196],{"type":53,"tag":227,"props":5183,"children":5184},{"style":234},[5185],{"type":58,"value":2143},{"type":53,"tag":227,"props":5187,"children":5188},{"style":240},[5189],{"type":58,"value":5190}," prune",{"type":53,"tag":227,"props":5192,"children":5193},{"style":240},[5194],{"type":58,"value":5195}," web",{"type":53,"tag":227,"props":5197,"children":5198},{"style":240},[5199],{"type":58,"value":5200}," --docker\n",{"type":53,"tag":227,"props":5202,"children":5203},{"class":229,"line":764},[5204],{"type":53,"tag":227,"props":5205,"children":5206},{"emptyLinePlaceholder":2159},[5207],{"type":58,"value":2162},{"type":53,"tag":227,"props":5209,"children":5210},{"class":229,"line":772},[5211],{"type":53,"tag":227,"props":5212,"children":5213},{"style":250},[5214],{"type":58,"value":5215},"# List all packages\n",{"type":53,"tag":227,"props":5217,"children":5218},{"class":229,"line":797},[5219,5223],{"type":53,"tag":227,"props":5220,"children":5221},{"style":234},[5222],{"type":58,"value":2143},{"type":53,"tag":227,"props":5224,"children":5225},{"style":240},[5226],{"type":58,"value":5227}," ls\n",{"type":53,"tag":227,"props":5229,"children":5230},{"class":229,"line":823},[5231],{"type":53,"tag":227,"props":5232,"children":5233},{"emptyLinePlaceholder":2159},[5234],{"type":58,"value":2162},{"type":53,"tag":227,"props":5236,"children":5237},{"class":229,"line":849},[5238],{"type":53,"tag":227,"props":5239,"children":5240},{"style":250},[5241],{"type":58,"value":5242},"# List affected packages\n",{"type":53,"tag":227,"props":5244,"children":5245},{"class":229,"line":858},[5246,5250,5255],{"type":53,"tag":227,"props":5247,"children":5248},{"style":234},[5249],{"type":58,"value":2143},{"type":53,"tag":227,"props":5251,"children":5252},{"style":240},[5253],{"type":58,"value":5254}," ls",{"type":53,"tag":227,"props":5256,"children":5257},{"style":240},[5258],{"type":58,"value":5102},{"type":53,"tag":66,"props":5260,"children":5262},{"id":5261},"remote-caching",[5263],{"type":58,"value":5264},"Remote Caching",{"type":53,"tag":216,"props":5266,"children":5268},{"className":218,"code":5267,"language":220,"meta":221,"style":221},"# Login to Vercel for remote caching\nturbo login\n\n# Link to a Vercel team\nturbo link\n\n# Now builds share cache across all machines\nturbo build  # Cache hits from CI, teammates, etc.\n",[5269],{"type":53,"tag":119,"props":5270,"children":5271},{"__ignoreMap":221},[5272,5280,5292,5299,5307,5319,5326,5334],{"type":53,"tag":227,"props":5273,"children":5274},{"class":229,"line":230},[5275],{"type":53,"tag":227,"props":5276,"children":5277},{"style":250},[5278],{"type":58,"value":5279},"# Login to Vercel for remote caching\n",{"type":53,"tag":227,"props":5281,"children":5282},{"class":229,"line":246},[5283,5287],{"type":53,"tag":227,"props":5284,"children":5285},{"style":234},[5286],{"type":58,"value":2143},{"type":53,"tag":227,"props":5288,"children":5289},{"style":240},[5290],{"type":58,"value":5291}," login\n",{"type":53,"tag":227,"props":5293,"children":5294},{"class":229,"line":256},[5295],{"type":53,"tag":227,"props":5296,"children":5297},{"emptyLinePlaceholder":2159},[5298],{"type":58,"value":2162},{"type":53,"tag":227,"props":5300,"children":5301},{"class":229,"line":280},[5302],{"type":53,"tag":227,"props":5303,"children":5304},{"style":250},[5305],{"type":58,"value":5306},"# Link to a Vercel team\n",{"type":53,"tag":227,"props":5308,"children":5309},{"class":229,"line":38},[5310,5314],{"type":53,"tag":227,"props":5311,"children":5312},{"style":234},[5313],{"type":58,"value":2143},{"type":53,"tag":227,"props":5315,"children":5316},{"style":240},[5317],{"type":58,"value":5318}," link\n",{"type":53,"tag":227,"props":5320,"children":5321},{"class":229,"line":481},[5322],{"type":53,"tag":227,"props":5323,"children":5324},{"emptyLinePlaceholder":2159},[5325],{"type":58,"value":2162},{"type":53,"tag":227,"props":5327,"children":5328},{"class":229,"line":525},[5329],{"type":53,"tag":227,"props":5330,"children":5331},{"style":250},[5332],{"type":58,"value":5333},"# Now builds share cache across all machines\n",{"type":53,"tag":227,"props":5335,"children":5336},{"class":229,"line":586},[5337,5341,5345],{"type":53,"tag":227,"props":5338,"children":5339},{"style":234},[5340],{"type":58,"value":2143},{"type":53,"tag":227,"props":5342,"children":5343},{"style":240},[5344],{"type":58,"value":2148},{"type":53,"tag":227,"props":5346,"children":5347},{"style":250},[5348],{"type":58,"value":5349},"  # Cache hits from CI, teammates, etc.\n",{"type":53,"tag":66,"props":5351,"children":5353},{"id":5352},"monorepo-structure",[5354],{"type":58,"value":5355},"Monorepo Structure",{"type":53,"tag":216,"props":5357,"children":5361},{"className":5358,"code":5360,"language":58},[5359],"language-text","my-monorepo\u002F\n├── turbo.json\n├── package.json\n├── apps\u002F\n│   ├── web\u002F           # Next.js app\n│   │   └── package.json\n│   ├── api\u002F           # Backend service\n│   │   └── package.json\n│   └── docs\u002F          # Documentation site\n│       └── package.json\n├── packages\u002F\n│   ├── ui\u002F            # Shared component library\n│   │   └── package.json\n│   ├── config\u002F        # Shared configs (eslint, tsconfig)\n│   │   └── package.json\n│   └── utils\u002F         # Shared utilities\n│       └── package.json\n└── node_modules\u002F\n",[5362],{"type":53,"tag":119,"props":5363,"children":5364},{"__ignoreMap":221},[5365],{"type":58,"value":5360},{"type":53,"tag":66,"props":5367,"children":5369},{"id":5368},"affected-flag",[5370],{"type":58,"value":5371},"--affected Flag",{"type":53,"tag":60,"props":5373,"children":5374},{},[5375],{"type":58,"value":5376},"The most important optimization for CI pipelines:",{"type":53,"tag":216,"props":5378,"children":5380},{"className":218,"code":5379,"language":220,"meta":221,"style":221},"# Only build\u002Ftest packages that changed since main\nturbo build test lint --affected\n",[5381],{"type":53,"tag":119,"props":5382,"children":5383},{"__ignoreMap":221},[5384,5392],{"type":53,"tag":227,"props":5385,"children":5386},{"class":229,"line":230},[5387],{"type":53,"tag":227,"props":5388,"children":5389},{"style":250},[5390],{"type":58,"value":5391},"# Only build\u002Ftest packages that changed since main\n",{"type":53,"tag":227,"props":5393,"children":5394},{"class":229,"line":246},[5395,5399,5403,5407,5412],{"type":53,"tag":227,"props":5396,"children":5397},{"style":234},[5398],{"type":58,"value":2143},{"type":53,"tag":227,"props":5400,"children":5401},{"style":240},[5402],{"type":58,"value":2148},{"type":53,"tag":227,"props":5404,"children":5405},{"style":240},[5406],{"type":58,"value":3669},{"type":53,"tag":227,"props":5408,"children":5409},{"style":240},[5410],{"type":58,"value":5411}," lint",{"type":53,"tag":227,"props":5413,"children":5414},{"style":240},[5415],{"type":58,"value":5102},{"type":53,"tag":60,"props":5417,"children":5418},{},[5419],{"type":58,"value":5420},"This performs intelligent graph traversal:",{"type":53,"tag":5422,"props":5423,"children":5424},"ol",{},[5425,5430,5435,5440],{"type":53,"tag":77,"props":5426,"children":5427},{},[5428],{"type":58,"value":5429},"Identifies changed files since the base branch",{"type":53,"tag":77,"props":5431,"children":5432},{},[5433],{"type":58,"value":5434},"Maps changes to affected packages",{"type":53,"tag":77,"props":5436,"children":5437},{},[5438],{"type":58,"value":5439},"Includes all dependent packages (transitively)",{"type":53,"tag":77,"props":5441,"children":5442},{},[5443],{"type":58,"value":5444},"Runs tasks only for the affected subgraph",{"type":53,"tag":66,"props":5446,"children":5448},{"id":5447},"microfrontends-multi-app-composition",[5449],{"type":58,"value":5450},"Microfrontends & Multi-App Composition",{"type":53,"tag":60,"props":5452,"children":5453},{},[5454],{"type":58,"value":5455},"Turborepo is the recommended orchestration layer for Vercel's Microfrontends architecture — composing multiple independently-deployed apps behind a single URL.",{"type":53,"tag":323,"props":5457,"children":5459},{"id":5458},"monorepo-structure-for-microfrontends",[5460],{"type":58,"value":5461},"Monorepo Structure for Microfrontends",{"type":53,"tag":216,"props":5463,"children":5466},{"className":5464,"code":5465,"language":58},[5359],"my-platform\u002F\n├── turbo.json\n├── package.json\n├── apps\u002F\n│   ├── shell\u002F          # Layout \u002F shell app (owns top-level routing)\n│   ├── dashboard\u002F      # Micro-app: dashboard features\n│   ├── settings\u002F       # Micro-app: settings features\n│   └── marketing\u002F      # Micro-app: public marketing site\n└── packages\u002F\n    ├── ui\u002F             # Shared component library\n    ├── auth\u002F           # Shared auth utilities\n    └── config\u002F         # Shared tsconfig, eslint\n",[5467],{"type":53,"tag":119,"props":5468,"children":5469},{"__ignoreMap":221},[5470],{"type":58,"value":5465},{"type":53,"tag":323,"props":5472,"children":5474},{"id":5473},"independent-deploys",[5475],{"type":58,"value":5476},"Independent Deploys",{"type":53,"tag":60,"props":5478,"children":5479},{},[5480],{"type":58,"value":5481},"Each micro-app is a separate Vercel project with its own build and deploy lifecycle:",{"type":53,"tag":216,"props":5483,"children":5485},{"className":218,"code":5484,"language":220,"meta":221,"style":221},"# Deploy only the dashboard micro-app\nturbo build --filter=dashboard\n\n# Deploy all micro-apps in parallel\nturbo build --filter=.\u002Fapps\u002F*\n\n# Deploy only micro-apps that changed since main\nturbo build --filter=.\u002Fapps\u002F*...[main]\n",[5486],{"type":53,"tag":119,"props":5487,"children":5488},{"__ignoreMap":221},[5489,5497,5513,5520,5528,5547,5554,5562],{"type":53,"tag":227,"props":5490,"children":5491},{"class":229,"line":230},[5492],{"type":53,"tag":227,"props":5493,"children":5494},{"style":250},[5495],{"type":58,"value":5496},"# Deploy only the dashboard micro-app\n",{"type":53,"tag":227,"props":5498,"children":5499},{"class":229,"line":246},[5500,5504,5508],{"type":53,"tag":227,"props":5501,"children":5502},{"style":234},[5503],{"type":58,"value":2143},{"type":53,"tag":227,"props":5505,"children":5506},{"style":240},[5507],{"type":58,"value":2148},{"type":53,"tag":227,"props":5509,"children":5510},{"style":240},[5511],{"type":58,"value":5512}," --filter=dashboard\n",{"type":53,"tag":227,"props":5514,"children":5515},{"class":229,"line":256},[5516],{"type":53,"tag":227,"props":5517,"children":5518},{"emptyLinePlaceholder":2159},[5519],{"type":58,"value":2162},{"type":53,"tag":227,"props":5521,"children":5522},{"class":229,"line":280},[5523],{"type":53,"tag":227,"props":5524,"children":5525},{"style":250},[5526],{"type":58,"value":5527},"# Deploy all micro-apps in parallel\n",{"type":53,"tag":227,"props":5529,"children":5530},{"class":229,"line":38},[5531,5535,5539,5543],{"type":53,"tag":227,"props":5532,"children":5533},{"style":234},[5534],{"type":58,"value":2143},{"type":53,"tag":227,"props":5536,"children":5537},{"style":240},[5538],{"type":58,"value":2148},{"type":53,"tag":227,"props":5540,"children":5541},{"style":240},[5542],{"type":58,"value":2284},{"type":53,"tag":227,"props":5544,"children":5545},{"style":343},[5546],{"type":58,"value":2289},{"type":53,"tag":227,"props":5548,"children":5549},{"class":229,"line":481},[5550],{"type":53,"tag":227,"props":5551,"children":5552},{"emptyLinePlaceholder":2159},[5553],{"type":58,"value":2162},{"type":53,"tag":227,"props":5555,"children":5556},{"class":229,"line":525},[5557],{"type":53,"tag":227,"props":5558,"children":5559},{"style":250},[5560],{"type":58,"value":5561},"# Deploy only micro-apps that changed since main\n",{"type":53,"tag":227,"props":5563,"children":5564},{"class":229,"line":586},[5565,5569,5573,5577,5582,5587,5591,5595],{"type":53,"tag":227,"props":5566,"children":5567},{"style":234},[5568],{"type":58,"value":2143},{"type":53,"tag":227,"props":5570,"children":5571},{"style":240},[5572],{"type":58,"value":2148},{"type":53,"tag":227,"props":5574,"children":5575},{"style":240},[5576],{"type":58,"value":2284},{"type":53,"tag":227,"props":5578,"children":5579},{"style":343},[5580],{"type":58,"value":5581},"*",{"type":53,"tag":227,"props":5583,"children":5584},{"style":240},[5585],{"type":58,"value":5586},"...",{"type":53,"tag":227,"props":5588,"children":5589},{"style":343},[5590],{"type":58,"value":2325},{"type":53,"tag":227,"props":5592,"children":5593},{"style":240},[5594],{"type":58,"value":2330},{"type":53,"tag":227,"props":5596,"children":5597},{"style":343},[5598],{"type":58,"value":583},{"type":53,"tag":323,"props":5600,"children":5602},{"id":5601},"shared-packages-across-micro-apps",[5603],{"type":58,"value":5604},"Shared Packages Across Micro-Apps",{"type":53,"tag":60,"props":5606,"children":5607},{},[5608],{"type":58,"value":5609},"Use Turborepo's dependency graph to share code without coupling deploys:",{"type":53,"tag":216,"props":5611,"children":5613},{"className":331,"code":5612,"language":333,"meta":221,"style":221},"{\n  \"tasks\": {\n    \"build\": {\n      \"dependsOn\": [\"^build\"],\n      \"outputs\": [\".next\u002F**\", \"dist\u002F**\"]\n    }\n  }\n}\n",[5614],{"type":53,"tag":119,"props":5615,"children":5616},{"__ignoreMap":221},[5617,5624,5647,5670,5709,5764,5771,5778],{"type":53,"tag":227,"props":5618,"children":5619},{"class":229,"line":230},[5620],{"type":53,"tag":227,"props":5621,"children":5622},{"style":343},[5623],{"type":58,"value":346},{"type":53,"tag":227,"props":5625,"children":5626},{"class":229,"line":246},[5627,5631,5635,5639,5643],{"type":53,"tag":227,"props":5628,"children":5629},{"style":343},[5630],{"type":58,"value":354},{"type":53,"tag":227,"props":5632,"children":5633},{"style":357},[5634],{"type":58,"value":401},{"type":53,"tag":227,"props":5636,"children":5637},{"style":343},[5638],{"type":58,"value":365},{"type":53,"tag":227,"props":5640,"children":5641},{"style":343},[5642],{"type":58,"value":370},{"type":53,"tag":227,"props":5644,"children":5645},{"style":343},[5646],{"type":58,"value":414},{"type":53,"tag":227,"props":5648,"children":5649},{"class":229,"line":256},[5650,5654,5658,5662,5666],{"type":53,"tag":227,"props":5651,"children":5652},{"style":343},[5653],{"type":58,"value":422},{"type":53,"tag":227,"props":5655,"children":5656},{"style":234},[5657],{"type":58,"value":427},{"type":53,"tag":227,"props":5659,"children":5660},{"style":343},[5661],{"type":58,"value":365},{"type":53,"tag":227,"props":5663,"children":5664},{"style":343},[5665],{"type":58,"value":370},{"type":53,"tag":227,"props":5667,"children":5668},{"style":343},[5669],{"type":58,"value":414},{"type":53,"tag":227,"props":5671,"children":5672},{"class":229,"line":280},[5673,5677,5681,5685,5689,5693,5697,5701,5705],{"type":53,"tag":227,"props":5674,"children":5675},{"style":343},[5676],{"type":58,"value":447},{"type":53,"tag":227,"props":5678,"children":5679},{"style":450},[5680],{"type":58,"value":491},{"type":53,"tag":227,"props":5682,"children":5683},{"style":343},[5684],{"type":58,"value":365},{"type":53,"tag":227,"props":5686,"children":5687},{"style":343},[5688],{"type":58,"value":370},{"type":53,"tag":227,"props":5690,"children":5691},{"style":343},[5692],{"type":58,"value":504},{"type":53,"tag":227,"props":5694,"children":5695},{"style":343},[5696],{"type":58,"value":365},{"type":53,"tag":227,"props":5698,"children":5699},{"style":240},[5700],{"type":58,"value":513},{"type":53,"tag":227,"props":5702,"children":5703},{"style":343},[5704],{"type":58,"value":365},{"type":53,"tag":227,"props":5706,"children":5707},{"style":343},[5708],{"type":58,"value":522},{"type":53,"tag":227,"props":5710,"children":5711},{"class":229,"line":38},[5712,5716,5720,5724,5728,5732,5736,5740,5744,5748,5752,5756,5760],{"type":53,"tag":227,"props":5713,"children":5714},{"style":343},[5715],{"type":58,"value":447},{"type":53,"tag":227,"props":5717,"children":5718},{"style":450},[5719],{"type":58,"value":535},{"type":53,"tag":227,"props":5721,"children":5722},{"style":343},[5723],{"type":58,"value":365},{"type":53,"tag":227,"props":5725,"children":5726},{"style":343},[5727],{"type":58,"value":370},{"type":53,"tag":227,"props":5729,"children":5730},{"style":343},[5731],{"type":58,"value":504},{"type":53,"tag":227,"props":5733,"children":5734},{"style":343},[5735],{"type":58,"value":365},{"type":53,"tag":227,"props":5737,"children":5738},{"style":240},[5739],{"type":58,"value":556},{"type":53,"tag":227,"props":5741,"children":5742},{"style":343},[5743],{"type":58,"value":365},{"type":53,"tag":227,"props":5745,"children":5746},{"style":343},[5747],{"type":58,"value":565},{"type":53,"tag":227,"props":5749,"children":5750},{"style":343},[5751],{"type":58,"value":375},{"type":53,"tag":227,"props":5753,"children":5754},{"style":240},[5755],{"type":58,"value":574},{"type":53,"tag":227,"props":5757,"children":5758},{"style":343},[5759],{"type":58,"value":365},{"type":53,"tag":227,"props":5761,"children":5762},{"style":343},[5763],{"type":58,"value":583},{"type":53,"tag":227,"props":5765,"children":5766},{"class":229,"line":481},[5767],{"type":53,"tag":227,"props":5768,"children":5769},{"style":343},[5770],{"type":58,"value":855},{"type":53,"tag":227,"props":5772,"children":5773},{"class":229,"line":525},[5774],{"type":53,"tag":227,"props":5775,"children":5776},{"style":343},[5777],{"type":58,"value":864},{"type":53,"tag":227,"props":5779,"children":5780},{"class":229,"line":586},[5781],{"type":53,"tag":227,"props":5782,"children":5783},{"style":343},[5784],{"type":58,"value":873},{"type":53,"tag":60,"props":5786,"children":5787},{},[5788,5790,5795,5796,5802,5803,5808,5810,5815],{"type":58,"value":5789},"Shared packages (",{"type":53,"tag":119,"props":5791,"children":5793},{"className":5792},[],[5794],{"type":58,"value":3966},{"type":58,"value":3787},{"type":53,"tag":119,"props":5797,"children":5799},{"className":5798},[],[5800],{"type":58,"value":5801},"auth",{"type":58,"value":3787},{"type":53,"tag":119,"props":5804,"children":5806},{"className":5805},[],[5807],{"type":58,"value":4047},{"type":58,"value":5809},") are built first via ",{"type":53,"tag":119,"props":5811,"children":5813},{"className":5812},[],[5814],{"type":58,"value":513},{"type":58,"value":5816},", then each micro-app builds against the latest shared code. Remote caching ensures shared package builds are never repeated across micro-app deploys.",{"type":53,"tag":323,"props":5818,"children":5820},{"id":5819},"multi-zone-patterns",[5821],{"type":58,"value":5822},"Multi-Zone Patterns",{"type":53,"tag":60,"props":5824,"children":5825},{},[5826],{"type":58,"value":5827},"Next.js multi-zones let each micro-app own a URL path prefix while sharing a single domain:",{"type":53,"tag":216,"props":5829,"children":5833},{"className":5830,"code":5831,"language":5832,"meta":221,"style":221},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F apps\u002Fshell\u002Fnext.config.ts\nimport type { NextConfig } from 'next'\n\nconst nextConfig: NextConfig = {\n  async rewrites() {\n    return [\n      { source: '\u002Fdashboard\u002F:path*', destination: 'https:\u002F\u002Fdashboard.example.com\u002Fdashboard\u002F:path*' },\n      { source: '\u002Fsettings\u002F:path*', destination: 'https:\u002F\u002Fsettings.example.com\u002Fsettings\u002F:path*' },\n    ]\n  },\n}\n\nexport default nextConfig\n","ts",[5834],{"type":53,"tag":119,"props":5835,"children":5836},{"__ignoreMap":221},[5837,5845,5893,5900,5930,5952,5964,6026,6083,6090,6098,6105,6112],{"type":53,"tag":227,"props":5838,"children":5839},{"class":229,"line":230},[5840],{"type":53,"tag":227,"props":5841,"children":5842},{"style":250},[5843],{"type":58,"value":5844},"\u002F\u002F apps\u002Fshell\u002Fnext.config.ts\n",{"type":53,"tag":227,"props":5846,"children":5847},{"class":229,"line":246},[5848,5853,5858,5863,5868,5873,5878,5883,5888],{"type":53,"tag":227,"props":5849,"children":5850},{"style":3317},[5851],{"type":58,"value":5852},"import",{"type":53,"tag":227,"props":5854,"children":5855},{"style":3317},[5856],{"type":58,"value":5857}," type",{"type":53,"tag":227,"props":5859,"children":5860},{"style":343},[5861],{"type":58,"value":5862}," {",{"type":53,"tag":227,"props":5864,"children":5865},{"style":3539},[5866],{"type":58,"value":5867}," NextConfig",{"type":53,"tag":227,"props":5869,"children":5870},{"style":343},[5871],{"type":58,"value":5872}," }",{"type":53,"tag":227,"props":5874,"children":5875},{"style":3317},[5876],{"type":58,"value":5877}," from",{"type":53,"tag":227,"props":5879,"children":5880},{"style":343},[5881],{"type":58,"value":5882}," '",{"type":53,"tag":227,"props":5884,"children":5885},{"style":240},[5886],{"type":58,"value":5887},"next",{"type":53,"tag":227,"props":5889,"children":5890},{"style":343},[5891],{"type":58,"value":5892},"'\n",{"type":53,"tag":227,"props":5894,"children":5895},{"class":229,"line":256},[5896],{"type":53,"tag":227,"props":5897,"children":5898},{"emptyLinePlaceholder":2159},[5899],{"type":58,"value":2162},{"type":53,"tag":227,"props":5901,"children":5902},{"class":229,"line":280},[5903,5908,5913,5917,5921,5926],{"type":53,"tag":227,"props":5904,"children":5905},{"style":357},[5906],{"type":58,"value":5907},"const",{"type":53,"tag":227,"props":5909,"children":5910},{"style":3539},[5911],{"type":58,"value":5912}," nextConfig",{"type":53,"tag":227,"props":5914,"children":5915},{"style":343},[5916],{"type":58,"value":370},{"type":53,"tag":227,"props":5918,"children":5919},{"style":234},[5920],{"type":58,"value":5867},{"type":53,"tag":227,"props":5922,"children":5923},{"style":343},[5924],{"type":58,"value":5925}," =",{"type":53,"tag":227,"props":5927,"children":5928},{"style":343},[5929],{"type":58,"value":414},{"type":53,"tag":227,"props":5931,"children":5932},{"class":229,"line":38},[5933,5938,5943,5948],{"type":53,"tag":227,"props":5934,"children":5935},{"style":357},[5936],{"type":58,"value":5937},"  async",{"type":53,"tag":227,"props":5939,"children":5940},{"style":2694},[5941],{"type":58,"value":5942}," rewrites",{"type":53,"tag":227,"props":5944,"children":5945},{"style":343},[5946],{"type":58,"value":5947},"()",{"type":53,"tag":227,"props":5949,"children":5950},{"style":343},[5951],{"type":58,"value":414},{"type":53,"tag":227,"props":5953,"children":5954},{"class":229,"line":481},[5955,5960],{"type":53,"tag":227,"props":5956,"children":5957},{"style":3317},[5958],{"type":58,"value":5959},"    return",{"type":53,"tag":227,"props":5961,"children":5962},{"style":2694},[5963],{"type":58,"value":4087},{"type":53,"tag":227,"props":5965,"children":5966},{"class":229,"line":525},[5967,5972,5977,5981,5985,5990,5995,5999,6004,6008,6012,6017,6021],{"type":53,"tag":227,"props":5968,"children":5969},{"style":343},[5970],{"type":58,"value":5971},"      {",{"type":53,"tag":227,"props":5973,"children":5974},{"style":2694},[5975],{"type":58,"value":5976}," source",{"type":53,"tag":227,"props":5978,"children":5979},{"style":343},[5980],{"type":58,"value":370},{"type":53,"tag":227,"props":5982,"children":5983},{"style":343},[5984],{"type":58,"value":5882},{"type":53,"tag":227,"props":5986,"children":5987},{"style":240},[5988],{"type":58,"value":5989},"\u002Fdashboard\u002F:path*",{"type":53,"tag":227,"props":5991,"children":5992},{"style":343},[5993],{"type":58,"value":5994},"'",{"type":53,"tag":227,"props":5996,"children":5997},{"style":343},[5998],{"type":58,"value":565},{"type":53,"tag":227,"props":6000,"children":6001},{"style":2694},[6002],{"type":58,"value":6003}," destination",{"type":53,"tag":227,"props":6005,"children":6006},{"style":343},[6007],{"type":58,"value":370},{"type":53,"tag":227,"props":6009,"children":6010},{"style":343},[6011],{"type":58,"value":5882},{"type":53,"tag":227,"props":6013,"children":6014},{"style":240},[6015],{"type":58,"value":6016},"https:\u002F\u002Fdashboard.example.com\u002Fdashboard\u002F:path*",{"type":53,"tag":227,"props":6018,"children":6019},{"style":343},[6020],{"type":58,"value":5994},{"type":53,"tag":227,"props":6022,"children":6023},{"style":343},[6024],{"type":58,"value":6025}," },\n",{"type":53,"tag":227,"props":6027,"children":6028},{"class":229,"line":586},[6029,6033,6037,6041,6045,6050,6054,6058,6062,6066,6070,6075,6079],{"type":53,"tag":227,"props":6030,"children":6031},{"style":343},[6032],{"type":58,"value":5971},{"type":53,"tag":227,"props":6034,"children":6035},{"style":2694},[6036],{"type":58,"value":5976},{"type":53,"tag":227,"props":6038,"children":6039},{"style":343},[6040],{"type":58,"value":370},{"type":53,"tag":227,"props":6042,"children":6043},{"style":343},[6044],{"type":58,"value":5882},{"type":53,"tag":227,"props":6046,"children":6047},{"style":240},[6048],{"type":58,"value":6049},"\u002Fsettings\u002F:path*",{"type":53,"tag":227,"props":6051,"children":6052},{"style":343},[6053],{"type":58,"value":5994},{"type":53,"tag":227,"props":6055,"children":6056},{"style":343},[6057],{"type":58,"value":565},{"type":53,"tag":227,"props":6059,"children":6060},{"style":2694},[6061],{"type":58,"value":6003},{"type":53,"tag":227,"props":6063,"children":6064},{"style":343},[6065],{"type":58,"value":370},{"type":53,"tag":227,"props":6067,"children":6068},{"style":343},[6069],{"type":58,"value":5882},{"type":53,"tag":227,"props":6071,"children":6072},{"style":240},[6073],{"type":58,"value":6074},"https:\u002F\u002Fsettings.example.com\u002Fsettings\u002F:path*",{"type":53,"tag":227,"props":6076,"children":6077},{"style":343},[6078],{"type":58,"value":5994},{"type":53,"tag":227,"props":6080,"children":6081},{"style":343},[6082],{"type":58,"value":6025},{"type":53,"tag":227,"props":6084,"children":6085},{"class":229,"line":595},[6086],{"type":53,"tag":227,"props":6087,"children":6088},{"style":2694},[6089],{"type":58,"value":4286},{"type":53,"tag":227,"props":6091,"children":6092},{"class":229,"line":620},[6093],{"type":53,"tag":227,"props":6094,"children":6095},{"style":343},[6096],{"type":58,"value":6097},"  },\n",{"type":53,"tag":227,"props":6099,"children":6100},{"class":229,"line":657},[6101],{"type":53,"tag":227,"props":6102,"children":6103},{"style":343},[6104],{"type":58,"value":873},{"type":53,"tag":227,"props":6106,"children":6107},{"class":229,"line":697},[6108],{"type":53,"tag":227,"props":6109,"children":6110},{"emptyLinePlaceholder":2159},[6111],{"type":58,"value":2162},{"type":53,"tag":227,"props":6113,"children":6114},{"class":229,"line":705},[6115,6120,6125],{"type":53,"tag":227,"props":6116,"children":6117},{"style":3317},[6118],{"type":58,"value":6119},"export",{"type":53,"tag":227,"props":6121,"children":6122},{"style":3317},[6123],{"type":58,"value":6124}," default",{"type":53,"tag":227,"props":6126,"children":6127},{"style":3539},[6128],{"type":58,"value":6129}," nextConfig\n",{"type":53,"tag":60,"props":6131,"children":6132},{},[6133],{"type":58,"value":6134},"Combine with Turborepo boundary rules to enforce architectural isolation:",{"type":53,"tag":216,"props":6136,"children":6138},{"className":331,"code":6137,"language":333,"meta":221,"style":221},"{\n  \"boundaries\": {\n    \"tags\": {\n      \"apps\u002F*\": [\"micro-app\"],\n      \"packages\u002Fui\": [\"shared\"],\n      \"packages\u002Fauth\": [\"shared\"]\n    },\n    \"rules\": [\n      { \"from\": [\"micro-app\"], \"allow\": [\"shared\"] },\n      { \"from\": [\"shared\"], \"deny\": [\"micro-app\"] }\n    ]\n  }\n}\n",[6139],{"type":53,"tag":119,"props":6140,"children":6141},{"__ignoreMap":221},[6142,6149,6172,6195,6235,6274,6314,6321,6344,6429,6513,6520,6527],{"type":53,"tag":227,"props":6143,"children":6144},{"class":229,"line":230},[6145],{"type":53,"tag":227,"props":6146,"children":6147},{"style":343},[6148],{"type":58,"value":346},{"type":53,"tag":227,"props":6150,"children":6151},{"class":229,"line":246},[6152,6156,6160,6164,6168],{"type":53,"tag":227,"props":6153,"children":6154},{"style":343},[6155],{"type":58,"value":354},{"type":53,"tag":227,"props":6157,"children":6158},{"style":357},[6159],{"type":58,"value":3812},{"type":53,"tag":227,"props":6161,"children":6162},{"style":343},[6163],{"type":58,"value":365},{"type":53,"tag":227,"props":6165,"children":6166},{"style":343},[6167],{"type":58,"value":370},{"type":53,"tag":227,"props":6169,"children":6170},{"style":343},[6171],{"type":58,"value":414},{"type":53,"tag":227,"props":6173,"children":6174},{"class":229,"line":256},[6175,6179,6183,6187,6191],{"type":53,"tag":227,"props":6176,"children":6177},{"style":343},[6178],{"type":58,"value":422},{"type":53,"tag":227,"props":6180,"children":6181},{"style":234},[6182],{"type":58,"value":3863},{"type":53,"tag":227,"props":6184,"children":6185},{"style":343},[6186],{"type":58,"value":365},{"type":53,"tag":227,"props":6188,"children":6189},{"style":343},[6190],{"type":58,"value":370},{"type":53,"tag":227,"props":6192,"children":6193},{"style":343},[6194],{"type":58,"value":414},{"type":53,"tag":227,"props":6196,"children":6197},{"class":229,"line":280},[6198,6202,6206,6210,6214,6218,6222,6227,6231],{"type":53,"tag":227,"props":6199,"children":6200},{"style":343},[6201],{"type":58,"value":447},{"type":53,"tag":227,"props":6203,"children":6204},{"style":450},[6205],{"type":58,"value":3887},{"type":53,"tag":227,"props":6207,"children":6208},{"style":343},[6209],{"type":58,"value":365},{"type":53,"tag":227,"props":6211,"children":6212},{"style":343},[6213],{"type":58,"value":370},{"type":53,"tag":227,"props":6215,"children":6216},{"style":343},[6217],{"type":58,"value":504},{"type":53,"tag":227,"props":6219,"children":6220},{"style":343},[6221],{"type":58,"value":365},{"type":53,"tag":227,"props":6223,"children":6224},{"style":240},[6225],{"type":58,"value":6226},"micro-app",{"type":53,"tag":227,"props":6228,"children":6229},{"style":343},[6230],{"type":58,"value":365},{"type":53,"tag":227,"props":6232,"children":6233},{"style":343},[6234],{"type":58,"value":522},{"type":53,"tag":227,"props":6236,"children":6237},{"class":229,"line":38},[6238,6242,6246,6250,6254,6258,6262,6266,6270],{"type":53,"tag":227,"props":6239,"children":6240},{"style":343},[6241],{"type":58,"value":447},{"type":53,"tag":227,"props":6243,"children":6244},{"style":450},[6245],{"type":58,"value":3928},{"type":53,"tag":227,"props":6247,"children":6248},{"style":343},[6249],{"type":58,"value":365},{"type":53,"tag":227,"props":6251,"children":6252},{"style":343},[6253],{"type":58,"value":370},{"type":53,"tag":227,"props":6255,"children":6256},{"style":343},[6257],{"type":58,"value":504},{"type":53,"tag":227,"props":6259,"children":6260},{"style":343},[6261],{"type":58,"value":365},{"type":53,"tag":227,"props":6263,"children":6264},{"style":240},[6265],{"type":58,"value":3949},{"type":53,"tag":227,"props":6267,"children":6268},{"style":343},[6269],{"type":58,"value":365},{"type":53,"tag":227,"props":6271,"children":6272},{"style":343},[6273],{"type":58,"value":522},{"type":53,"tag":227,"props":6275,"children":6276},{"class":229,"line":481},[6277,6281,6286,6290,6294,6298,6302,6306,6310],{"type":53,"tag":227,"props":6278,"children":6279},{"style":343},[6280],{"type":58,"value":447},{"type":53,"tag":227,"props":6282,"children":6283},{"style":450},[6284],{"type":58,"value":6285},"packages\u002Fauth",{"type":53,"tag":227,"props":6287,"children":6288},{"style":343},[6289],{"type":58,"value":365},{"type":53,"tag":227,"props":6291,"children":6292},{"style":343},[6293],{"type":58,"value":370},{"type":53,"tag":227,"props":6295,"children":6296},{"style":343},[6297],{"type":58,"value":504},{"type":53,"tag":227,"props":6299,"children":6300},{"style":343},[6301],{"type":58,"value":365},{"type":53,"tag":227,"props":6303,"children":6304},{"style":240},[6305],{"type":58,"value":3949},{"type":53,"tag":227,"props":6307,"children":6308},{"style":343},[6309],{"type":58,"value":365},{"type":53,"tag":227,"props":6311,"children":6312},{"style":343},[6313],{"type":58,"value":583},{"type":53,"tag":227,"props":6315,"children":6316},{"class":229,"line":525},[6317],{"type":53,"tag":227,"props":6318,"children":6319},{"style":343},[6320],{"type":58,"value":592},{"type":53,"tag":227,"props":6322,"children":6323},{"class":229,"line":586},[6324,6328,6332,6336,6340],{"type":53,"tag":227,"props":6325,"children":6326},{"style":343},[6327],{"type":58,"value":422},{"type":53,"tag":227,"props":6329,"children":6330},{"style":234},[6331],{"type":58,"value":4074},{"type":53,"tag":227,"props":6333,"children":6334},{"style":343},[6335],{"type":58,"value":365},{"type":53,"tag":227,"props":6337,"children":6338},{"style":343},[6339],{"type":58,"value":370},{"type":53,"tag":227,"props":6341,"children":6342},{"style":343},[6343],{"type":58,"value":4087},{"type":53,"tag":227,"props":6345,"children":6346},{"class":229,"line":595},[6347,6351,6355,6359,6363,6367,6371,6375,6379,6383,6388,6392,6396,6400,6404,6408,6412,6416,6420,6425],{"type":53,"tag":227,"props":6348,"children":6349},{"style":343},[6350],{"type":58,"value":5971},{"type":53,"tag":227,"props":6352,"children":6353},{"style":343},[6354],{"type":58,"value":375},{"type":53,"tag":227,"props":6356,"children":6357},{"style":450},[6358],{"type":58,"value":4108},{"type":53,"tag":227,"props":6360,"children":6361},{"style":343},[6362],{"type":58,"value":365},{"type":53,"tag":227,"props":6364,"children":6365},{"style":343},[6366],{"type":58,"value":370},{"type":53,"tag":227,"props":6368,"children":6369},{"style":343},[6370],{"type":58,"value":504},{"type":53,"tag":227,"props":6372,"children":6373},{"style":343},[6374],{"type":58,"value":365},{"type":53,"tag":227,"props":6376,"children":6377},{"style":240},[6378],{"type":58,"value":6226},{"type":53,"tag":227,"props":6380,"children":6381},{"style":343},[6382],{"type":58,"value":365},{"type":53,"tag":227,"props":6384,"children":6385},{"style":343},[6386],{"type":58,"value":6387},"],",{"type":53,"tag":227,"props":6389,"children":6390},{"style":343},[6391],{"type":58,"value":375},{"type":53,"tag":227,"props":6393,"children":6394},{"style":450},[6395],{"type":58,"value":4148},{"type":53,"tag":227,"props":6397,"children":6398},{"style":343},[6399],{"type":58,"value":365},{"type":53,"tag":227,"props":6401,"children":6402},{"style":343},[6403],{"type":58,"value":370},{"type":53,"tag":227,"props":6405,"children":6406},{"style":343},[6407],{"type":58,"value":504},{"type":53,"tag":227,"props":6409,"children":6410},{"style":343},[6411],{"type":58,"value":365},{"type":53,"tag":227,"props":6413,"children":6414},{"style":240},[6415],{"type":58,"value":3949},{"type":53,"tag":227,"props":6417,"children":6418},{"style":343},[6419],{"type":58,"value":365},{"type":53,"tag":227,"props":6421,"children":6422},{"style":343},[6423],{"type":58,"value":6424},"]",{"type":53,"tag":227,"props":6426,"children":6427},{"style":343},[6428],{"type":58,"value":6025},{"type":53,"tag":227,"props":6430,"children":6431},{"class":229,"line":620},[6432,6436,6440,6444,6448,6452,6456,6460,6464,6468,6472,6476,6480,6484,6488,6492,6496,6500,6504,6508],{"type":53,"tag":227,"props":6433,"children":6434},{"style":343},[6435],{"type":58,"value":5971},{"type":53,"tag":227,"props":6437,"children":6438},{"style":343},[6439],{"type":58,"value":375},{"type":53,"tag":227,"props":6441,"children":6442},{"style":450},[6443],{"type":58,"value":4108},{"type":53,"tag":227,"props":6445,"children":6446},{"style":343},[6447],{"type":58,"value":365},{"type":53,"tag":227,"props":6449,"children":6450},{"style":343},[6451],{"type":58,"value":370},{"type":53,"tag":227,"props":6453,"children":6454},{"style":343},[6455],{"type":58,"value":504},{"type":53,"tag":227,"props":6457,"children":6458},{"style":343},[6459],{"type":58,"value":365},{"type":53,"tag":227,"props":6461,"children":6462},{"style":240},[6463],{"type":58,"value":3949},{"type":53,"tag":227,"props":6465,"children":6466},{"style":343},[6467],{"type":58,"value":365},{"type":53,"tag":227,"props":6469,"children":6470},{"style":343},[6471],{"type":58,"value":6387},{"type":53,"tag":227,"props":6473,"children":6474},{"style":343},[6475],{"type":58,"value":375},{"type":53,"tag":227,"props":6477,"children":6478},{"style":450},[6479],{"type":58,"value":4242},{"type":53,"tag":227,"props":6481,"children":6482},{"style":343},[6483],{"type":58,"value":365},{"type":53,"tag":227,"props":6485,"children":6486},{"style":343},[6487],{"type":58,"value":370},{"type":53,"tag":227,"props":6489,"children":6490},{"style":343},[6491],{"type":58,"value":504},{"type":53,"tag":227,"props":6493,"children":6494},{"style":343},[6495],{"type":58,"value":365},{"type":53,"tag":227,"props":6497,"children":6498},{"style":240},[6499],{"type":58,"value":6226},{"type":53,"tag":227,"props":6501,"children":6502},{"style":343},[6503],{"type":58,"value":365},{"type":53,"tag":227,"props":6505,"children":6506},{"style":343},[6507],{"type":58,"value":6424},{"type":53,"tag":227,"props":6509,"children":6510},{"style":343},[6511],{"type":58,"value":6512}," }\n",{"type":53,"tag":227,"props":6514,"children":6515},{"class":229,"line":657},[6516],{"type":53,"tag":227,"props":6517,"children":6518},{"style":343},[6519],{"type":58,"value":4286},{"type":53,"tag":227,"props":6521,"children":6522},{"class":229,"line":697},[6523],{"type":53,"tag":227,"props":6524,"children":6525},{"style":343},[6526],{"type":58,"value":864},{"type":53,"tag":227,"props":6528,"children":6529},{"class":229,"line":705},[6530],{"type":53,"tag":227,"props":6531,"children":6532},{"style":343},[6533],{"type":58,"value":873},{"type":53,"tag":323,"props":6535,"children":6537},{"id":6536},"when-to-use-turborepo-for-microfrontends",[6538],{"type":58,"value":6539},"When to Use Turborepo for Microfrontends",{"type":53,"tag":2451,"props":6541,"children":6542},{},[6543,6559],{"type":53,"tag":2455,"props":6544,"children":6545},{},[6546],{"type":53,"tag":2459,"props":6547,"children":6548},{},[6549,6554],{"type":53,"tag":2463,"props":6550,"children":6551},{},[6552],{"type":58,"value":6553},"Scenario",{"type":53,"tag":2463,"props":6555,"children":6556},{},[6557],{"type":58,"value":6558},"Recommended?",{"type":53,"tag":2474,"props":6560,"children":6561},{},[6562,6575,6588,6608,6621],{"type":53,"tag":2459,"props":6563,"children":6564},{},[6565,6570],{"type":53,"tag":2481,"props":6566,"children":6567},{},[6568],{"type":58,"value":6569},"Multiple teams owning independent features",{"type":53,"tag":2481,"props":6571,"children":6572},{},[6573],{"type":58,"value":6574},"Yes — independent deploys + shared packages",{"type":53,"tag":2459,"props":6576,"children":6577},{},[6578,6583],{"type":53,"tag":2481,"props":6579,"children":6580},{},[6581],{"type":58,"value":6582},"Single team, single app",{"type":53,"tag":2481,"props":6584,"children":6585},{},[6586],{"type":58,"value":6587},"No — standard Next.js is simpler",{"type":53,"tag":2459,"props":6589,"children":6590},{},[6591,6596],{"type":53,"tag":2481,"props":6592,"children":6593},{},[6594],{"type":58,"value":6595},"Shared component library across apps",{"type":53,"tag":2481,"props":6597,"children":6598},{},[6599,6601,6606],{"type":58,"value":6600},"Yes — ",{"type":53,"tag":119,"props":6602,"children":6604},{"className":6603},[],[6605],{"type":58,"value":3928},{"type":58,"value":6607}," with boundary rules",{"type":53,"tag":2459,"props":6609,"children":6610},{},[6611,6616],{"type":53,"tag":2481,"props":6612,"children":6613},{},[6614],{"type":58,"value":6615},"Gradual migration from monolith",{"type":53,"tag":2481,"props":6617,"children":6618},{},[6619],{"type":58,"value":6620},"Yes — extract features into micro-apps incrementally",{"type":53,"tag":2459,"props":6622,"children":6623},{},[6624,6629],{"type":53,"tag":2481,"props":6625,"children":6626},{},[6627],{"type":58,"value":6628},"Need version-skew protection",{"type":53,"tag":2481,"props":6630,"children":6631},{},[6632],{"type":58,"value":6633},"Yes — isolated builds per micro-app",{"type":53,"tag":323,"props":6635,"children":6637},{"id":6636},"related-documentation",[6638],{"type":58,"value":6639},"Related Documentation",{"type":53,"tag":73,"props":6641,"children":6642},{},[6643,6655],{"type":53,"tag":77,"props":6644,"children":6645},{},[6646],{"type":53,"tag":6647,"props":6648,"children":6652},"a",{"href":6649,"rel":6650},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fmicrofrontends",[6651],"nofollow",[6653],{"type":58,"value":6654},"Vercel Microfrontends",{"type":53,"tag":77,"props":6656,"children":6657},{},[6658],{"type":53,"tag":6647,"props":6659,"children":6662},{"href":6660,"rel":6661},"https:\u002F\u002Fnextjs.org\u002Fdocs\u002Fapp\u002Fbuilding-your-application\u002Fdeploying\u002Fmulti-zones",[6651],[6663],{"type":58,"value":6664},"Next.js Multi-Zones",{"type":53,"tag":66,"props":6666,"children":6668},{"id":6667},"bun-support-lockfile-detection",[6669],{"type":58,"value":6670},"Bun Support & Lockfile Detection",{"type":53,"tag":60,"props":6672,"children":6673},{},[6674,6676,6681],{"type":58,"value":6675},"Turborepo 2.6+ has ",{"type":53,"tag":81,"props":6677,"children":6678},{},[6679],{"type":58,"value":6680},"stable Bun support",{"type":58,"value":6682}," with granular lockfile analysis:",{"type":53,"tag":73,"props":6684,"children":6685},{},[6686,6719,6736,6753],{"type":53,"tag":77,"props":6687,"children":6688},{},[6689,6694,6696,6702,6704,6710,6712,6718],{"type":53,"tag":81,"props":6690,"children":6691},{},[6692],{"type":58,"value":6693},"Lockfile format",{"type":58,"value":6695},": Turborepo requires ",{"type":53,"tag":119,"props":6697,"children":6699},{"className":6698},[],[6700],{"type":58,"value":6701},"bun.lock",{"type":58,"value":6703}," (text format). If only ",{"type":53,"tag":119,"props":6705,"children":6707},{"className":6706},[],[6708],{"type":58,"value":6709},"bun.lockb",{"type":58,"value":6711}," (binary) is found, it errors with a prompt to generate a text lockfile. Generate with ",{"type":53,"tag":119,"props":6713,"children":6715},{"className":6714},[],[6716],{"type":58,"value":6717},"bun install --save-text-lockfile",{"type":58,"value":3741},{"type":53,"tag":77,"props":6720,"children":6721},{},[6722,6727,6729,6734],{"type":53,"tag":81,"props":6723,"children":6724},{},[6725],{"type":58,"value":6726},"Granular cache invalidation",{"type":58,"value":6728},": Turborepo parses ",{"type":53,"tag":119,"props":6730,"children":6732},{"className":6731},[],[6733],{"type":58,"value":6701},{"type":58,"value":6735}," to detect which specific packages changed and only invalidates caches for affected tasks — not the entire monorepo.",{"type":53,"tag":77,"props":6737,"children":6738},{},[6739,6744,6745,6751],{"type":53,"tag":81,"props":6740,"children":6741},{},[6742],{"type":58,"value":6743},"Pruning",{"type":58,"value":117},{"type":53,"tag":119,"props":6746,"children":6748},{"className":6747},[],[6749],{"type":58,"value":6750},"turbo prune",{"type":58,"value":6752}," works with Bun workspaces, generating a minimal lockfile for single-app deploys.",{"type":53,"tag":77,"props":6754,"children":6755},{},[6756,6761,6763,6768,6770,6775],{"type":53,"tag":81,"props":6757,"children":6758},{},[6759],{"type":58,"value":6760},"Skip-builds detection",{"type":58,"value":6762},": On Vercel, monorepo workspace detection automatically skips unaffected projects when ",{"type":53,"tag":119,"props":6764,"children":6766},{"className":6765},[],[6767],{"type":58,"value":6701},{"type":58,"value":6769}," changes don't touch a project's dependencies. Combined with ",{"type":53,"tag":119,"props":6771,"children":6773},{"className":6772},[],[6774],{"type":58,"value":124},{"type":58,"value":6776},", only changed packages and their dependents rebuild.",{"type":53,"tag":216,"props":6778,"children":6780},{"className":218,"code":6779,"language":220,"meta":221,"style":221},"# Ensure text lockfile for Turborepo compatibility\nbun install --save-text-lockfile\n\n# Run only affected packages (works with Bun lockfile detection)\nturbo build --affected\n",[6781],{"type":53,"tag":119,"props":6782,"children":6783},{"__ignoreMap":221},[6784,6792,6809,6816,6824],{"type":53,"tag":227,"props":6785,"children":6786},{"class":229,"line":230},[6787],{"type":53,"tag":227,"props":6788,"children":6789},{"style":250},[6790],{"type":58,"value":6791},"# Ensure text lockfile for Turborepo compatibility\n",{"type":53,"tag":227,"props":6793,"children":6794},{"class":229,"line":246},[6795,6800,6804],{"type":53,"tag":227,"props":6796,"children":6797},{"style":234},[6798],{"type":58,"value":6799},"bun",{"type":53,"tag":227,"props":6801,"children":6802},{"style":240},[6803],{"type":58,"value":267},{"type":53,"tag":227,"props":6805,"children":6806},{"style":240},[6807],{"type":58,"value":6808}," --save-text-lockfile\n",{"type":53,"tag":227,"props":6810,"children":6811},{"class":229,"line":256},[6812],{"type":53,"tag":227,"props":6813,"children":6814},{"emptyLinePlaceholder":2159},[6815],{"type":58,"value":2162},{"type":53,"tag":227,"props":6817,"children":6818},{"class":229,"line":280},[6819],{"type":53,"tag":227,"props":6820,"children":6821},{"style":250},[6822],{"type":58,"value":6823},"# Run only affected packages (works with Bun lockfile detection)\n",{"type":53,"tag":227,"props":6825,"children":6826},{"class":229,"line":38},[6827,6831,6835],{"type":53,"tag":227,"props":6828,"children":6829},{"style":234},[6830],{"type":58,"value":2143},{"type":53,"tag":227,"props":6832,"children":6833},{"style":240},[6834],{"type":58,"value":2148},{"type":53,"tag":227,"props":6836,"children":6837},{"style":240},[6838],{"type":58,"value":5102},{"type":53,"tag":4841,"props":6840,"children":6841},{},[6842],{"type":53,"tag":60,"props":6843,"children":6844},{},[6845,6850,6851,6856,6858,6864,6866,6873],{"type":53,"tag":81,"props":6846,"children":6847},{},[6848],{"type":58,"value":6849},"Known issue",{"type":58,"value":117},{"type":53,"tag":119,"props":6852,"children":6854},{"className":6853},[],[6855],{"type":58,"value":6750},{"type":58,"value":6857}," with Bun 1.3+ may produce lockfiles with formatting differences that break ",{"type":53,"tag":119,"props":6859,"children":6861},{"className":6860},[],[6862],{"type":58,"value":6863},"bun i --frozen-lockfile",{"type":58,"value":6865},". Track fixes in ",{"type":53,"tag":6647,"props":6867,"children":6870},{"href":6868,"rel":6869},"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fturborepo\u002Fissues\u002F11007",[6651],[6871],{"type":58,"value":6872},"turborepo#11007",{"type":58,"value":3741},{"type":53,"tag":66,"props":6875,"children":6877},{"id":6876},"deploying-to-vercel",[6878],{"type":58,"value":6879},"Deploying to Vercel",{"type":53,"tag":60,"props":6881,"children":6882},{},[6883,6885,6890],{"type":58,"value":6884},"Vercel auto-detects Turborepo and optimizes builds. Each app in ",{"type":53,"tag":119,"props":6886,"children":6888},{"className":6887},[],[6889],{"type":58,"value":2590},{"type":58,"value":6891}," can be a separate Vercel project with automatic dependency detection.",{"type":53,"tag":66,"props":6893,"children":6895},{"id":6894},"when-to-use-turborepo",[6896],{"type":58,"value":6897},"When to Use Turborepo",{"type":53,"tag":2451,"props":6899,"children":6900},{},[6901,6916],{"type":53,"tag":2455,"props":6902,"children":6903},{},[6904],{"type":53,"tag":2459,"props":6905,"children":6906},{},[6907,6911],{"type":53,"tag":2463,"props":6908,"children":6909},{},[6910],{"type":58,"value":6553},{"type":53,"tag":2463,"props":6912,"children":6913},{},[6914],{"type":58,"value":6915},"Use Turborepo?",{"type":53,"tag":2474,"props":6917,"children":6918},{},[6919,6932,6945,6958,6971,6984,6997],{"type":53,"tag":2459,"props":6920,"children":6921},{},[6922,6927],{"type":53,"tag":2481,"props":6923,"children":6924},{},[6925],{"type":58,"value":6926},"Single Next.js app",{"type":53,"tag":2481,"props":6928,"children":6929},{},[6930],{"type":58,"value":6931},"No — Turbopack handles bundling",{"type":53,"tag":2459,"props":6933,"children":6934},{},[6935,6940],{"type":53,"tag":2481,"props":6936,"children":6937},{},[6938],{"type":58,"value":6939},"Multiple apps sharing code",{"type":53,"tag":2481,"props":6941,"children":6942},{},[6943],{"type":58,"value":6944},"Yes — orchestrate builds",{"type":53,"tag":2459,"props":6946,"children":6947},{},[6948,6953],{"type":53,"tag":2481,"props":6949,"children":6950},{},[6951],{"type":58,"value":6952},"Shared component library",{"type":53,"tag":2481,"props":6954,"children":6955},{},[6956],{"type":58,"value":6957},"Yes — manage dependencies",{"type":53,"tag":2459,"props":6959,"children":6960},{},[6961,6966],{"type":53,"tag":2481,"props":6962,"children":6963},{},[6964],{"type":58,"value":6965},"CI taking too long",{"type":53,"tag":2481,"props":6967,"children":6968},{},[6969],{"type":58,"value":6970},"Yes — caching + affected",{"type":53,"tag":2459,"props":6972,"children":6973},{},[6974,6979],{"type":53,"tag":2481,"props":6975,"children":6976},{},[6977],{"type":58,"value":6978},"Team sharing build artifacts",{"type":53,"tag":2481,"props":6980,"children":6981},{},[6982],{"type":58,"value":6983},"Yes — remote caching",{"type":53,"tag":2459,"props":6985,"children":6986},{},[6987,6992],{"type":53,"tag":2481,"props":6988,"children":6989},{},[6990],{"type":58,"value":6991},"Enforcing architecture boundaries",{"type":53,"tag":2481,"props":6993,"children":6994},{},[6995],{"type":58,"value":6996},"Yes — boundary rules",{"type":53,"tag":2459,"props":6998,"children":6999},{},[7000,7005],{"type":53,"tag":2481,"props":7001,"children":7002},{},[7003],{"type":58,"value":7004},"Complex multi-step CI pipelines",{"type":53,"tag":2481,"props":7006,"children":7007},{},[7008],{"type":58,"value":7009},"Yes — task graph + matrix",{"type":53,"tag":66,"props":7011,"children":7013},{"id":7012},"official-documentation",[7014],{"type":58,"value":7015},"Official Documentation",{"type":53,"tag":73,"props":7017,"children":7018},{},[7019,7029,7039,7049,7059,7069],{"type":53,"tag":77,"props":7020,"children":7021},{},[7022],{"type":53,"tag":6647,"props":7023,"children":7026},{"href":7024,"rel":7025},"https:\u002F\u002Fturborepo.dev\u002Frepo\u002Fdocs",[6651],[7027],{"type":58,"value":7028},"Turborepo Documentation",{"type":53,"tag":77,"props":7030,"children":7031},{},[7032],{"type":53,"tag":6647,"props":7033,"children":7036},{"href":7034,"rel":7035},"https:\u002F\u002Fturborepo.dev\u002Frepo\u002Fdocs\u002Fgetting-started",[6651],[7037],{"type":58,"value":7038},"Getting Started",{"type":53,"tag":77,"props":7040,"children":7041},{},[7042],{"type":53,"tag":6647,"props":7043,"children":7046},{"href":7044,"rel":7045},"https:\u002F\u002Fturborepo.dev\u002Frepo\u002Fdocs\u002Fcrafting-your-repository",[6651],[7047],{"type":58,"value":7048},"Crafting Your Repository",{"type":53,"tag":77,"props":7050,"children":7051},{},[7052],{"type":53,"tag":6647,"props":7053,"children":7056},{"href":7054,"rel":7055},"https:\u002F\u002Fturborepo.dev\u002Frepo\u002Fdocs\u002Freference\u002Fconfiguration",[6651],[7057],{"type":58,"value":7058},"Task Configuration",{"type":53,"tag":77,"props":7060,"children":7061},{},[7062],{"type":53,"tag":6647,"props":7063,"children":7066},{"href":7064,"rel":7065},"https:\u002F\u002Fturborepo.dev\u002Frepo\u002Fdocs\u002Fcrafting-your-repository\u002Frunning-tasks#using-filters",[6651],[7067],{"type":58,"value":7068},"Filtering",{"type":53,"tag":77,"props":7070,"children":7071},{},[7072],{"type":53,"tag":6647,"props":7073,"children":7076},{"href":7074,"rel":7075},"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fturborepo",[6651],[7077],{"type":58,"value":7078},"GitHub: Turborepo",{"type":53,"tag":7080,"props":7081,"children":7082},"style",{},[7083],{"type":58,"value":7084},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":7086,"total":7291},[7087,7108,7131,7148,7164,7183,7202,7218,7234,7248,7260,7275],{"slug":7088,"name":7088,"fn":7089,"description":7090,"org":7091,"tags":7092,"stars":7105,"repoUrl":7106,"updatedAt":7107},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7093,7096,7099,7102],{"name":7094,"slug":7095,"type":15},"Documents","documents",{"name":7097,"slug":7098,"type":15},"Healthcare","healthcare",{"name":7100,"slug":7101,"type":15},"Insurance","insurance",{"name":7103,"slug":7104,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":7109,"name":7109,"fn":7110,"description":7111,"org":7112,"tags":7113,"stars":7128,"repoUrl":7129,"updatedAt":7130},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7114,7117,7119,7122,7125],{"name":7115,"slug":7116,"type":15},".NET","dotnet",{"name":7118,"slug":7109,"type":15},"ASP.NET Core",{"name":7120,"slug":7121,"type":15},"Blazor","blazor",{"name":7123,"slug":7124,"type":15},"C#","csharp",{"name":7126,"slug":7127,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":7132,"name":7132,"fn":7133,"description":7134,"org":7135,"tags":7136,"stars":7128,"repoUrl":7129,"updatedAt":7147},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7137,7140,7143,7146],{"name":7138,"slug":7139,"type":15},"Apps SDK","apps-sdk",{"name":7141,"slug":7142,"type":15},"ChatGPT","chatgpt",{"name":7144,"slug":7145,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":7149,"name":7149,"fn":7150,"description":7151,"org":7152,"tags":7153,"stars":7128,"repoUrl":7129,"updatedAt":7163},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7154,7157,7160],{"name":7155,"slug":7156,"type":15},"API Development","api-development",{"name":7158,"slug":7159,"type":15},"CLI","cli",{"name":7161,"slug":7162,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":7165,"name":7165,"fn":7166,"description":7167,"org":7168,"tags":7169,"stars":7128,"repoUrl":7129,"updatedAt":7182},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7170,7173,7176,7179],{"name":7171,"slug":7172,"type":15},"Cloudflare","cloudflare",{"name":7174,"slug":7175,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":7177,"slug":7178,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":7180,"slug":7181,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":7184,"name":7184,"fn":7185,"description":7186,"org":7187,"tags":7188,"stars":7128,"repoUrl":7129,"updatedAt":7201},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7189,7192,7195,7198],{"name":7190,"slug":7191,"type":15},"Productivity","productivity",{"name":7193,"slug":7194,"type":15},"Project Management","project-management",{"name":7196,"slug":7197,"type":15},"Strategy","strategy",{"name":7199,"slug":7200,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":7203,"name":7203,"fn":7204,"description":7205,"org":7206,"tags":7207,"stars":7128,"repoUrl":7129,"updatedAt":7217},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7208,7211,7213,7216],{"name":7209,"slug":7210,"type":15},"Design","design",{"name":7212,"slug":7203,"type":15},"Figma",{"name":7214,"slug":7215,"type":15},"Frontend","frontend",{"name":7144,"slug":7145,"type":15},"2026-04-12T05:06:47.939943",{"slug":7219,"name":7219,"fn":7220,"description":7221,"org":7222,"tags":7223,"stars":7128,"repoUrl":7129,"updatedAt":7233},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7224,7225,7228,7229,7230],{"name":7209,"slug":7210,"type":15},{"name":7226,"slug":7227,"type":15},"Design System","design-system",{"name":7212,"slug":7203,"type":15},{"name":7214,"slug":7215,"type":15},{"name":7231,"slug":7232,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":7235,"name":7235,"fn":7236,"description":7237,"org":7238,"tags":7239,"stars":7128,"repoUrl":7129,"updatedAt":7247},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7240,7241,7242,7245,7246],{"name":7209,"slug":7210,"type":15},{"name":7226,"slug":7227,"type":15},{"name":7243,"slug":7244,"type":15},"Documentation","documentation",{"name":7212,"slug":7203,"type":15},{"name":7214,"slug":7215,"type":15},"2026-05-16T06:07:47.821474",{"slug":7249,"name":7249,"fn":7250,"description":7251,"org":7252,"tags":7253,"stars":7128,"repoUrl":7129,"updatedAt":7259},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7254,7255,7256,7257,7258],{"name":7209,"slug":7210,"type":15},{"name":7212,"slug":7203,"type":15},{"name":7214,"slug":7215,"type":15},{"name":7231,"slug":7232,"type":15},{"name":7126,"slug":7127,"type":15},"2026-05-16T06:07:40.583615",{"slug":7261,"name":7261,"fn":7262,"description":7263,"org":7264,"tags":7265,"stars":7128,"repoUrl":7129,"updatedAt":7274},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7266,7269,7270,7273],{"name":7267,"slug":7268,"type":15},"Animation","animation",{"name":7161,"slug":7162,"type":15},{"name":7271,"slug":7272,"type":15},"Creative","creative",{"name":7209,"slug":7210,"type":15},"2026-05-02T05:31:48.48485",{"slug":7276,"name":7276,"fn":7277,"description":7278,"org":7279,"tags":7280,"stars":7128,"repoUrl":7129,"updatedAt":7290},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7281,7282,7283,7286,7289],{"name":7271,"slug":7272,"type":15},{"name":7209,"slug":7210,"type":15},{"name":7284,"slug":7285,"type":15},"Image Generation","image-generation",{"name":7287,"slug":7288,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":7293,"total":7403},[7294,7311,7327,7339,7357,7373,7391],{"slug":7295,"name":7295,"fn":7296,"description":7297,"org":7298,"tags":7299,"stars":24,"repoUrl":25,"updatedAt":7310},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7300,7303,7306,7309],{"name":7301,"slug":7302,"type":15},"Accessibility","accessibility",{"name":7304,"slug":7305,"type":15},"Charts","charts",{"name":7307,"slug":7308,"type":15},"Data Visualization","data-visualization",{"name":7209,"slug":7210,"type":15},"2026-06-30T19:00:57.102",{"slug":7312,"name":7312,"fn":7313,"description":7314,"org":7315,"tags":7316,"stars":24,"repoUrl":25,"updatedAt":7326},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7317,7320,7323],{"name":7318,"slug":7319,"type":15},"Agents","agents",{"name":7321,"slug":7322,"type":15},"Browser Automation","browser-automation",{"name":7324,"slug":7325,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":7328,"name":7328,"fn":7329,"description":7330,"org":7331,"tags":7332,"stars":24,"repoUrl":25,"updatedAt":7338},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7333,7334,7337],{"name":7321,"slug":7322,"type":15},{"name":7335,"slug":7336,"type":15},"Local Development","local-development",{"name":7324,"slug":7325,"type":15},"2026-04-06T18:41:17.526867",{"slug":7340,"name":7340,"fn":7341,"description":7342,"org":7343,"tags":7344,"stars":24,"repoUrl":25,"updatedAt":7356},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7345,7346,7347,7350,7353],{"name":7318,"slug":7319,"type":15},{"name":7177,"slug":7178,"type":15},{"name":7348,"slug":7349,"type":15},"SDK","sdk",{"name":7351,"slug":7352,"type":15},"Serverless","serverless",{"name":7354,"slug":7355,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":7358,"name":7358,"fn":7359,"description":7360,"org":7361,"tags":7362,"stars":24,"repoUrl":25,"updatedAt":7372},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7363,7364,7367,7370,7371],{"name":7214,"slug":7215,"type":15},{"name":7365,"slug":7366,"type":15},"React","react",{"name":7368,"slug":7369,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":7231,"slug":7232,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:40:59.619419",{"slug":7374,"name":7374,"fn":7375,"description":7376,"org":7377,"tags":7378,"stars":24,"repoUrl":25,"updatedAt":7390},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7379,7382,7385,7388,7389],{"name":7380,"slug":7381,"type":15},"AI Infrastructure","ai-infrastructure",{"name":7383,"slug":7384,"type":15},"Cost Optimization","cost-optimization",{"name":7386,"slug":7387,"type":15},"LLM","llm",{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:40:44.377464",{"slug":7392,"name":7392,"fn":7393,"description":7394,"org":7395,"tags":7396,"stars":24,"repoUrl":25,"updatedAt":7402},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[7397,7398,7401],{"name":7383,"slug":7384,"type":15},{"name":7399,"slug":7400,"type":15},"Database","database",{"name":7386,"slug":7387,"type":15},"2026-04-06T18:41:08.513425",600]