-
Notifications
You must be signed in to change notification settings - Fork 809
/
turbo.json
47 lines (47 loc) · 1.14 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
{
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "types/**"]
},
"watch": {
"dependsOn": ["^watch"],
"outputs": ["dist/**", "types/**"]
},
"lint": {},
"test": {
"dependsOn": ["^build"]
},
"test-server": {
"dependsOn": ["^build"]
},
"test-e2e": {
"dependsOn": ["build"]
},
"test-ci": {
"dependsOn": ["^build"],
"cache": false,
"outputs": []
},
"deploy": {
"dependsOn": ["build", "test", "lint"],
"outputs": ["dist/**", "build/**"]
},
"measure": {
"dependsOn": ["build"],
"outputs": ["dist/**", "build/**"]
},
"publish": {
"dependsOn": [],
"outputs": ["dist/**", "build/**"]
},
"dev": {
"dependsOn": ["build"],
"cache": false,
"outputs": ["dist/**"]
},
"dev-server": {
"outputs": ["dist/**", "build/**"]
}
}
}