forked from awslabs/iot-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
49 lines (49 loc) · 1.01 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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"outputs": ["build/**", "dist/**"]
},
"clean": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true,
"env": [
"AWS_ACCESS_KEY_ID",
"AWS_REGION",
"AWS_SECRET_ACCESS_KEY",
"AWS_SESSION_TOKEN",
"COGNITO_IDENTITY_POOL_ID",
"COGNITO_USE_LOCAL_VERIFIER",
"COGNITO_USER_POOL_CLIENT_ID",
"COGNITO_USER_POOL_ID",
"COGNITO_DOMAIN_NAME",
"DATABASE_ENDPOINT",
"DATABASE_TABLE_NAME",
"DATABASE_PORT",
"DATABASE_LAUNCH_LOCAL",
"NODE_ENV",
"SERVICE_ENDPOINTS"
]
},
"lint": {},
"lint:commit": {},
"lint:fix": {},
"playwright": {
"env": [
"ENDPOINT",
"LAUNCH_WEB_SERVER",
"USER_PASSWORD"
]
},
"test": {
"outputs": ["coverage/**"]
},
"test:commit": {},
"test:watch": {
"cache": false
}
}
}