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{
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"build": {
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**", "storybook-static/**", ".next/**", "out/**"],
"dependsOn": ["^build"]
},
"lint": {
"dependsOn": ["^lint"]
},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
},
"storybook": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"]
},
"build-storybook": {
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["storybook-static/**"],
"dependsOn": ["^build"]
},
"preview-storybook": {
"dependsOn": ["^build"],
"cache": false
}
}
}