forked from badlabs/tradebot-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
turbo.json
57 lines (57 loc) · 1.31 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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
},
"lint": {},
"lintfix": {},
"deploy": {
"dependsOn": ["build", "test", "lint"]
},
"@tradeb0t/core#dev": {
"cache": false,
"persistent": true
},
"@tradeb0t/core#build": {
"outputs": ["dist/**"]
},
"stubb0t#dev": {
"cache": false,
"persistent": true
},
"stubb0t#start": {
"dependsOn": ["@tradeb0t/core#build"]
},
"@tradeb0t/dashboard#dev": {
"cache": false,
"persistent": true
},
"@tradeb0t/dashboard#build": {
"dependsOn": ["@tradeb0t/core#build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"@tradeb0t/dashboard#start": {
"dependsOn": ["@tradeb0t/dashboard#build"],
"cache": false,
"persistent": true
},
"docs#uml": {
"inputs": ["../../packages/core/src/**/*.ts"],
"outputs": ["public/diagrams/**"]
},
"docs#dev": {
"dependsOn": ["docs#uml"],
"persistent": true
},
"docs#generate": {
"dependsOn": ["docs#uml"],
"outputs": ["dist/**"]
}
}
}