forked from awslabs/iot-app-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
39 lines (39 loc) · 890 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
{
"$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": [],
"env": ["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN", "REGION", "AWS_REGION", "ASSET_ID_1", "PROPERTY_ID_1", "PROPERTY_ID_2", "PROPERTY_ID_3"]
},
"version": {
"dependsOn": [],
"outputMode": "new-only"
}
}
}