forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
41 lines (41 loc) · 861 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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint": {},
"test": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**"],
"env": [
"AWS_ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY",
"AWS_REGION",
"AWS_KMS_KEY_ID",
"GOOGLE_PROJECT_ID",
"GOOGLE_LOCATION",
"GOOGLE_KEYRING",
"GOOGLE_KEY_NAME",
"GOOGLE_KEY_NAME_VERSION",
"E2E_AWS_KMS_TEST_ENABLE",
"E2E_GCP_KMS_TEST_ENABLE",
"GOOGLE_APPLICATION_CREDENTIALS"
]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": [
"build/**",
"dist/**",
"storybook-static/**",
".next/**",
"!.next/cache/**",
"pkg/**"
]
}
},
"globalEnv": ["VERCEL_ENV", "VITE_NETWORK", "VITE_VERCEL_ANALYTICS_ID", "VITE_SENTRY_SAMPLE_RATE"]
}