-
Notifications
You must be signed in to change notification settings - Fork 16
/
turbo.json
48 lines (48 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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"test": {
"outputs": []
},
"test:watch": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"],
"env": [
"DEBUG",
"CURRENTS_ENFORCE_IS_CURRENTS",
"CURRENTS_PROJECT_ID",
"CURRENTS_API_URL",
"CURRENTS_RECORD_KEY",
"CURRENTS_PREVIOUS_CI_BUILD_ID",
"CURRENTS_MACHINE_ID",
"TF_BUILD",
"TF_BUILD_BUILDNUMBER",
"AZURE_HTTP_USER_AGENT",
"bamboo_buildNumber",
"CI_NAME",
"CODESHIP",
"GITLAB_CI",
"CI_SERVER_NAME",
"GCP_PROJECT",
"GCLOUD_PROJECT",
"GOOGLE_CLOUD_PROJECT",
"JENKINS_URL",
"JENKINS_HOME",
"JENKINS_VERSION",
"HUDSON_URL",
"HUDSON_HOME",
"WERCKER",
"WERCKER_MAIN_PIPELINE_STARTED"
]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
}
}
}