Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@
[submodule "vendor/vuejs-ai"]
path = vendor/vuejs-ai
url = https://github.com/vuejs-ai/skills
[submodule "vendor/turborepo"]
path = vendor/turborepo
url = https://github.com/vercel/turborepo
[submodule "vendor/web-design-guidelines"]
path = vendor/web-design-guidelines
url = https://github.com/vercel-labs/agent-skills
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description: |
monorepo, shares code between apps, runs changed/affected packages, debugs cache,
or has apps/packages directories.
metadata:
version: 2.8.14-canary.6
version: 2.8.14-canary.8
---

# Turborepo Skill
Expand Down Expand Up @@ -722,7 +722,7 @@ import { Button } from "@repo/ui/button";

```json
{
"$schema": "https://v2-8-14-canary-6.turborepo.dev/schema.json",
"$schema": "https://v2-8-14-canary-8.turborepo.dev/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Package tasks enable Turborepo to:

```json
{
"$schema": "https://v2-8-14-canary-6.turborepo.dev/schema.json",
"$schema": "https://v2-8-14-canary-8.turborepo.dev/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ When you run `turbo run lint`, Turborepo finds all packages with a `lint` script

```json
{
"$schema": "https://v2-8-14-canary-6.turborepo.dev/schema.json",
"$schema": "https://v2-8-14-canary-8.turborepo.dev/schema.json",
"globalEnv": ["CI"],
"globalDependencies": ["tsconfig.json"],
"tasks": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Exclude variables (useful with framework inference):

```json
{
"$schema": "https://v2-8-14-canary-6.turborepo.dev/schema.json",
"$schema": "https://v2-8-14-canary-8.turborepo.dev/schema.json",
"globalEnv": ["CI", "NODE_ENV"],
"globalPassThroughEnv": ["GITHUB_TOKEN", "NPM_TOKEN"],
"tasks": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ If you use `.env.development` and `.env.production`, both should be in inputs.

```json
{
"$schema": "https://v2-8-14-canary-6.turborepo.dev/schema.json",
"$schema": "https://v2-8-14-canary-8.turborepo.dev/schema.json",
"globalEnv": ["CI", "NODE_ENV", "VERCEL"],
"globalPassThroughEnv": ["GITHUB_TOKEN", "VERCEL_URL"],
"tasks": {
Expand Down
13 changes: 7 additions & 6 deletions plugins/turborepo/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@
"version": "1.0.0",
"description": "Turborepo monorepo build system guidance for task pipelines, caching, CI optimization, and the turbo CLI",
"author": {
"name": "Anthony Fu",
"url": "https://github.com/antfu"
"name": "Vercel",
"url": "https://github.com/vercel"
},
"homepage": "https://github.com/antfu/skills/tree/main/skills/turborepo",
"repository": "https://github.com/antfu/skills",
"homepage": "https://github.com/vercel/turborepo",
"repository": "https://github.com/vercel/turborepo",
"license": "MIT",
"keywords": [
"turborepo",
"monorepo",
"build-system",
"antfu"
]
"vercel"
],
"skills": "./.agents/skills/"
}
10 changes: 10 additions & 0 deletions plugins/turborepo/skills-lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"version": 1,
"skills": {
"turborepo": {
"source": "vercel/turborepo",
"sourceType": "github",
"computedHash": "cdb7f47b38f7d635dabab0a94001a6a3e1a2b322836c2ecf42a5e2fe8b9e7ec2"
}
}
}
7 changes: 0 additions & 7 deletions plugins/turborepo/skills/turborepo/LICENSE.md

This file was deleted.

5 changes: 0 additions & 5 deletions plugins/turborepo/skills/turborepo/SYNC.md

This file was deleted.

70 changes: 0 additions & 70 deletions plugins/turborepo/skills/turborepo/command/turborepo.md

This file was deleted.

15 changes: 0 additions & 15 deletions scripts/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export const SKILL_TO_PLUGIN: Record<string, string> = {
"vue-router-best-practices": "vue",
"vue-testing-best-practices": "vue",
slidev: "slidev",
turborepo: "turborepo",
"vueuse-functions": "vueuse",
"web-design-guidelines": "web-design",
mastra: "mastra",
Expand Down Expand Up @@ -261,20 +260,6 @@ export async function syncSubmodules() {
console.log("done")
}

// turborepo: also sync command file
if (name === "turborepo") {
const turborepoCommandSrc = join(PLUGINS_DIR, "turborepo/skills/turborepo/command/turborepo.md")
if (existsSync(turborepoCommandSrc)) {
const commandsDir = join(PLUGINS_DIR, "turborepo/commands")
mkdirSync(commandsDir, { recursive: true })
const dest = join(commandsDir, "turborepo.md")
rmSync(dest, { force: true })
cpSync(turborepoCommandSrc, dest)
changedPaths.push("plugins/turborepo/commands/turborepo.md")
console.log(" turborepo command synced")
}
}

// Commit this vendor's changes
if (hasGitChanges(changedPaths)) {
if (sha === null) {
Expand Down
6 changes: 0 additions & 6 deletions scripts/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,6 @@ export const vendors: Record<string, VendorMeta> = {
"vue-testing-best-practices": "vue-testing-best-practices",
},
},
turborepo: {
source: "https://github.com/vercel/turborepo",
skills: {
turborepo: "turborepo",
},
},
"web-design-guidelines": {
source: "https://github.com/vercel-labs/agent-skills",
skills: {
Expand Down
1 change: 0 additions & 1 deletion vendor/turborepo
Submodule turborepo deleted from 923e20