-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathturbo.json
More file actions
63 lines (63 loc) · 1.74 KB
/
turbo.json
File metadata and controls
63 lines (63 loc) · 1.74 KB
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
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["CERTIFICATE_PASSWORD", "MAIN_STATIC_PORT", "ACCOUNT_STATIC_PORT", "BACK_OFFICE_STATIC_PORT"],
"tasks": {
"build": {
"inputs": ["$TURBO_DEFAULT$", "shared/lib/api/*.Api.json", "shared/lib/api/*.Api_*.json"],
"outputs": ["dist/**", "tests/test-results/**"],
"dependsOn": ["^build", "update-translations"]
},
"@repo/emails#build": {
"inputs": [
"$TURBO_DEFAULT$",
"../../account/WebApp/emails/**",
"../../main/WebApp/emails/**",
"!../../account/WebApp/emails/dist/**",
"!../../main/WebApp/emails/dist/**"
],
"outputs": [
"dist/**",
"../../account/WebApp/emails/dist/**",
"../../main/WebApp/emails/dist/**"
],
"dependsOn": ["^build", "update-translations"]
},
"update-translations": {
"cache": false,
"dependsOn": ["^build"]
},
"check": {
"dependsOn": ["^check"],
"cache": false
},
"dev": {
"cache": false,
"persistent": true,
"env": ["CERTIFICATE_PASSWORD", "MAIN_STATIC_PORT", "ACCOUNT_STATIC_PORT", "BACK_OFFICE_STATIC_PORT"],
"dependsOn": ["dev:setup"]
},
"dev:setup": {
"dependsOn": ["^dev:setup", "@repo/emails#build"],
"inputs": ["$TURBO_DEFAULT$", "shared/lib/api/*.Api.json", "shared/lib/api/*.Api_*.json"],
"outputs": ["dist/**", "shared/lib/api/*.generated.d.ts"]
},
"format": {
"dependsOn": ["^format"],
"cache": false
},
"lint": {
"dependsOn": ["^lint"],
"cache": false
},
"clean": {
"cache": false
},
"test": {
"cache": false,
"dependsOn": ["^build"]
}
},
"remoteCache": {
"enabled": false
}
}