-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturbo.json
More file actions
54 lines (52 loc) · 1.44 KB
/
turbo.json
File metadata and controls
54 lines (52 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"$schema": "https://turbo.build/schema.json",
// Files outside any package that affect builds. Paths are repo-root-relative.
// .agents/skills/** is included because bundle-assets.sh copies skill files
// into packages/cli/assets/ during build. Without this, Turbo won't cache-miss
// when skill content changes (since skills live outside the package directory).
"globalDependencies": [".agents/skills/**"],
"tasks": {
"build": {
// ^build: build dependencies (other workspace packages) first
"dependsOn": ["^build"],
// dist/: compiled TypeScript output
// assets/: bundled skills, templates, and scripts copied by bundle-assets.sh
"outputs": ["dist/**", "assets/**"]
},
"check": {
"dependsOn": ["^build"]
},
"check:fix": {
"dependsOn": ["^build"]
},
"dev": {
// Never cache dev server — always run fresh
"cache": false,
"persistent": true,
"dependsOn": ["^build"]
},
"test": {
// build (not ^build): tests depend on the SAME package's build, not just dependencies
"dependsOn": ["build"],
"outputs": []
},
"lint": {
"dependsOn": ["^build"]
},
"lint:fix": {
"dependsOn": ["^build"]
},
"format": {
"dependsOn": ["^build"]
},
"format:fix": {
"dependsOn": ["^build"]
},
"type-check": {
"dependsOn": ["^build"]
},
"clean": {
"cache": false
}
}
}