-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
69 lines (69 loc) · 1.57 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
{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/main",
"globalDependencies": [
"$GITHUB_TOKEN",
"tsconfig.json",
".env.*"
],
"pipeline": {
"chain": {
"dependsOn": ["^chain"],
"outputs": [""],
"inputs": ["contracts/**/*.sol"]
},
"chain:fork": {
"dependsOn": ["^chain:fork"],
"outputs": [""],
"inputs": ["contracts/**/*.sol"]
},
"chain:deployment": {
"dependsOn": ["^chain:deployment"],
"outputs": [""],
"inputs": ["contracts/**/*.sol"]
},
"compile": {
"dependsOn": ["^compile"],
"outputs": [""],
"inputs": ["contracts/**/*.sol"]
},
"dev": {
"outputs": [""]
},
"lint": {
"outputs": [""]
},
"watch": {
"dependsOn": ["^watch"]
},
"build": {
"dependsOn": ["^build"]
},
"build:prd": {
"dependsOn": ["^build:prd"],
"outputs": [".next", "out"]
},
"clean": {
"dependsOn": ["^clean"]
},
"//#cleanself": {
"dependsOn": [],
"outputs": []
},
"lab": {
"dependsOn": [
"^watch",
"@poolyverse/deployments#chain:deployment",
"@poolyverse/pfp-builder#dev"
],
"outputs": [""]
},
"lab:fork": {
"dependsOn": [
"^watch",
"@poolyverse/deployments#chain:fork",
"@poolyverse/pfp-builder#dev"
]
}
}
}