-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathturbo.json
More file actions
52 lines (52 loc) · 1016 Bytes
/
turbo.json
File metadata and controls
52 lines (52 loc) · 1016 Bytes
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
{
"$schema": "https://turbo.build/schema.json",
"globalPassThroughEnv": [
"STORYBOOK_TELEMETRY_URL",
"STORYBOOK_DISABLE_TELEMETRY",
"STORYBOOK_TELEMETRY_DEBUG"
],
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"build-storybook": {
"dependsOn": ["^build"],
"outputs": ["storybook-static/**"]
},
"dev": {
"dependsOn": ["^build"],
"persistent": true,
"interruptible": true
},
"storybook": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true,
"interruptible": true
},
"//#format": {},
"//#format:check": {},
"//#lint": {},
"//#lint:ci": {},
"//#test": {
"dependsOn": ["^build"],
"persistent": true,
"interruptible": true
},
"//#test:run": {
"dependsOn": ["^build"]
},
"//#test:ci": {
"dependsOn": ["^build"],
"outputs": ["coverage/**", "test-report.junit.xml"]
},
"typecheck": {},
"//#typecheck": {},
"publint": {
"dependsOn": ["build"],
"outputs": []
}
}
}