-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathturbo.json
49 lines (49 loc) · 1015 Bytes
/
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
{
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "core.node"],
"cache": false
},
"@gd/desktop#build": {
"dependsOn": ["^@gd/ui#build", "^@gd/config#build"],
"cache": false
},
"@gd/desktop#dev": {
"dependsOn": ["^@gd/ui#build", "^@gd/config#build"],
"outputs": ["dist/**"],
"cache": false
},
"@gd/ui#dev": {
"dependsOn": ["^@gd/config#dev"],
"cache": false
},
"@gd/ui#build": {
"dependsOn": ["^@gd/config#build"],
"cache": false
},
"dev": {
"outputs": ["dist/**"],
"cache": false
},
"test": {
"dependsOn": ["^test"],
"cache": false
},
"test-prod": {
"dependsOn": ["^test-prod"],
"cache": false
},
"lint": {
"cache": false
},
"lint-fix": {
"cache": false
},
"release": {
"cache": false
}
},
"globalDependencies": [".env"]
}