forked from sushi-labs/sushiswap
-
Notifications
You must be signed in to change notification settings - Fork 2
/
turbo.json
92 lines (92 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"pipeline": {
"root#build": {
"dependsOn": [
"^build",
"$ANALYTICS_URL",
"$BLOG_URL",
"$DOCS_URL",
"$FURO_URL",
"$LANDING_URL",
"$SWAP_URL",
"$LEGACY_URL"
],
"outputs": [".next/**"]
},
"build": {
"outputs": [
".next/**",
"dist/**",
"typechain/**",
"artifacts/**",
"cache/**"
],
"dependsOn": [
"^build",
"generate"
]
},
"clean": {
"cache": false
},
"dev": {
"dependsOn": [
"^build",
"generate"
],
"cache": false
},
"generate": {
"dependsOn": [
"^build",
"$REDIS_URL"
],
"outputs": [
"^build",
".graphclient/**",
".mesh/**",
"typechain/**"
],
"cache": true
},
"test": {
"outputs": [
"coverage/**"
],
"dependsOn": [
"^build"
]
},
"lint": {
"outputs": [],
"dependsOn": [
"^build"
]
},
"validate": {
"cache": false
},
"export": {
"dependsOn": [
"build"
],
"outputs": [
"exports.json"
]
},
"node": {
"cache": true,
"dependsOn": [
"build"
],
"outputs": [
"deployments/**"
]
}
},
"globalDependencies": [
"tsconfig.json",
"$NODE_ENV"
],
"baseBranch": "origin/master"
}