turborepo

📁 simon-jarillo/prueba-skills 📅 Jan 26, 2026
2
总安装量
2
周安装量
#65155
全站排名
安装命令
npx skills add https://github.com/simon-jarillo/prueba-skills --skill turborepo

Agent 安装分布

claude-code 2
codex 1
github-copilot 1
gemini-cli 1

Skill 文档

Turborepo

High-performance build system for JavaScript/TypeScript monorepos with intelligent caching.

Installation

npx create-turbo@latest

Basic turbo.json

{
  "$schema": "https://turbo.build/schema.json",
  "pipeline": {
    "build": {
      "dependsOn": ["^build"],
      "outputs": ["dist/**", ".next/**"]
    },
    "test": {
      "dependsOn": ["build"]
    },
    "lint": {},
    "dev": {
      "cache": false
    }
  }
}

Commands

turbo run build           # Build all
turbo run build --filter=web  # Filter
turbo run build --force   # No cache

Resources