forked from tale-project/tale
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
100 lines (100 loc) · 1.93 KB
/
turbo.json
File metadata and controls
100 lines (100 loc) · 1.93 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"$schema": "https://turbo.build/schema.v2.json",
"globalPassThroughEnv": [
"DO_NOT_TRACK",
"TURBO_TELEMETRY_DISABLED",
"STORYBOOK_DISABLE_TELEMETRY",
"TELEMETRY_DISABLED"
],
"tasks": {
"setup": {
"cache": false,
"outputs": [".venv/**"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"@tale/crawler#build": {
"outputs": []
},
"@tale/db#build": {
"outputs": []
},
"@tale/proxy#build": {
"outputs": []
},
"@tale/rag#build": {
"outputs": []
},
"dev": {
"dependsOn": ["setup"],
"cache": false,
"persistent": true
},
"serve": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["setup"],
"outputs": []
},
"lint:fix": {
"dependsOn": ["setup"],
"cache": false,
"outputs": []
},
"format": {
"dependsOn": ["setup"],
"cache": false,
"outputs": []
},
"format:check": {
"dependsOn": ["setup"],
"outputs": []
},
"convex:codegen": {
"cache": false,
"outputs": ["convex/_generated/**"]
},
"@tale/cli#generate": {
"outputs": ["src/generated/**"]
},
"@tale/cli#typecheck": {
"dependsOn": ["generate", "convex:codegen"],
"outputs": []
},
"typecheck": {
"dependsOn": ["convex:codegen"],
"outputs": []
},
"test": {
"dependsOn": ["setup"],
"outputs": []
},
"test:watch": {
"dependsOn": ["setup"],
"cache": false,
"persistent": true
},
"test:ui": {
"outputs": []
},
"test:coverage": {
"dependsOn": ["setup"],
"outputs": ["coverage/**"]
},
"knip": {
"cache": false,
"outputs": []
},
"storybook:build": {
"outputs": ["storybook-static/**"]
},
"docker:build": {
"cache": false,
"outputs": []
}
}
}