-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
75 lines (74 loc) · 1.46 KB
/
turbo.json
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
{
"pipeline": {
"watch": {
"dependsOn": ["^watch"],
"outputs": ["dist/**", ".next/**"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"lint": {
"outputs": []
},
"dev": {
"dependsOn": ["watch"],
"cache": false
},
"sapa:test": {
"dependsOn": [],
"outputs": ["dist/**", ".next/**"]
},
"sapa2:test": {
"dependsOn": [],
"outputs": ["dist/**", ".next/**"]
},
"ui:watch": {
"dependsOn": [
"^ui:watch"
],
"outputs": ["dist/**", ".next/**"],
"cache": false
},
"ui:dev": {
"dependsOn": ["ui:watch"],
"cache": false
},
"sapa:watch": {
"dependsOn": [
"^sapa:watch"
],
"outputs": ["dist/**", ".next/**"],
"cache": false
},
"sapa:dev": {
"dependsOn": ["sapa:watch"],
"cache": false
},
"ssr:watch": {
"dependsOn": [
"^ssr:watch"
],
"outputs": ["dist/**", ".next/**"],
"cache": false
},
"ssr:dev": {
"dependsOn": ["ssr:watch"],
"cache": false
},
"editor:watch": {
"dependsOn": [
"^editor:watch"
],
"outputs": ["dist/**", ".next/**"],
"cache": false
},
"editor:dev": {
"dependsOn": ["editor:watch"]
},
"npm-check": {
"dependsOn": ["^npm-check"],
"cache": false
}
}
}