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{
"$schema": "https://turborepo.org/schema.json",
"globalEnv": ["NEXT_CI_RUNNER"],
"daemon": false,
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"dev": {
"dependsOn": ["^dev"],
"outputs": ["dist/**"]
},
"storybook": {},
"build-storybook": {
"dependsOn": ["^build-storybook"],
"outputs": ["storybook-static/**"]
},
"test-storybook": {
"dependsOn": ["^test-storybook"]
},
"typescript": {},
"//#typescript": {},
"//#get-test-timings": {
"inputs": ["run-tests.js"],
"outputs": ["test-timings.json"],
"env": ["KV_REST_API_URL", "KV_REST_API_TOKEN"]
}
},
"ui": "tui"
}