-
Notifications
You must be signed in to change notification settings - Fork 60
/
turbo.json
52 lines (52 loc) · 1.02 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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"outputMode": "new-only"
},
"pack": {
"dependsOn": [],
"outputMode": "new-only"
},
"lint": {
"dependsOn": [],
"outputMode": "new-only"
},
"fix": {
"dependsOn": [],
"outputMode": "new-only"
},
"test": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"test:ui": {
"dependsOn": ["build"],
"env": ["CI"],
"outputMode": "new-only"
},
"start": {
"dependsOn": ["^build"],
"env": [
"AWS_ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY",
"AWS_SESSION_TOKEN",
"AWS_REGION",
"ASSET_ID_1",
"EDGE_GATEWAY_ENDPOINT",
"NODE_ENV",
"PROPERTY_ID_1",
"PROPERTY_ID_2",
"PROPERTY_ID_3",
"REGION",
"TZ"
]
},
"version": {
"dependsOn": [],
"outputMode": "new-only"
}
}
}