-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
54 lines (54 loc) · 1.42 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
50
51
52
53
54
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"API_URL",
"APP_URL",
"AUTH_KV_REST_API_REST_API_READ_ONLY_TOKEN",
"AUTH_KV_REST_API_REST_API_TOKEN",
"AUTH_KV_REST_API_REST_API_URL",
"AUTH_KV_REST_API_URL",
"AUTH_SECRET",
"CI",
"CYPRESS_INSTALL_BINARY",
"DATABASE_URL",
"DO_NOT_TRACK",
"ENABLE_EXPERIMENTAL_COREPACK",
"ENABLE_VC_BUILD",
"NEXTAUTH_SECRET",
"NODE_ENV",
"PROFILE_BLOB_READ_WRITE_TOKEN",
"SMTP_URL",
"STALKER_URL",
"TURBO_TEAM",
"TURBO_TOKEN"
],
"tasks": {
"@1.infra/database#type-check": { "dependsOn": ["generate"] },
"@1.infra/database#dev": { "dependsOn": ["generate"] },
"@1.infra/database#generate": {
"outputs": [".prisma/client"]
},
"@1.modules/auth.next#type-check": { "dependsOn": ["^build"] },
"api#dev": { "persistent": true },
"build": {
"dependsOn": ["^build"],
"outputs": [
"!.next/cache/**",
".next/**",
"dist/**",
"node_modules/.cache/tsc/**"
]
},
"clean": { "cache": false },
"studio": { "cache": false },
"dev": { "persistent": true },
"lint": { "dependsOn": ["build"] },
"start": { "persistent": true },
"type-check": {
"dependsOn": ["^type-check"],
"outputs": ["node_modules/.cache/tsc/**", "dist/**"]
},
"www#dev": { "persistent": true }
}
}