-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathturbo.json
More file actions
88 lines (88 loc) · 1.82 KB
/
turbo.json
File metadata and controls
88 lines (88 loc) · 1.82 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"NEXT_PUBLIC_*",
"SB_*",
"SANITY_*",
"NODE_ENV",
"VERCEL_ENV",
"VERCEL_REDEPLOY_HOOK_URL",
"DATABASE_URL",
"DATABASE_URL_UNPOOLED",
"DATABASE_URI",
"POSTGRES_URL",
"POSTGRES_URL_NO_SSL",
"POSTGRES_URL_NON_POOLING",
"POSTGRES_PRISMA_URL",
"POSTGRES_HOST",
"POSTGRES_USER",
"POSTGRES_PASSWORD",
"POSTGRES_DATABASE",
"PGHOST",
"PGHOST_UNPOOLED",
"PGUSER",
"PGPASSWORD",
"PGDATABASE",
"NEON_PROJECT_ID",
"PAYLOAD_SECRET",
"PREVIEW_SECRET",
"AUTH0_SECRET",
"AUTH0_BASE_URL",
"AUTH0_ISSUER_BASE_URL",
"AUTH0_CLIENT_ID",
"AUTH0_CLIENT_SECRET",
"BLOB_READ_WRITE_TOKEN",
"EDGE_CONFIG",
"OPENAI_API_KEY"
],
"tasks": {
"build": {
"cache": true,
"persistent": true,
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"env": ["VERCEL_REDEPLOY_HOOK_URL"]
},
"start": {
"dependsOn": ["^build"]
},
"lint": {
"cache": true,
"persistent": true
},
"typecheck": {},
"dev": {
"cache": false,
"persistent": true
},
"dev:turbo": {
"cache": false,
"persistent": true
},
"@focus-reactive/sanity-template-selector#build": {
"persistent": false,
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"sanity#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"generate:types": {
"cache": false
},
"generate:importmap": {
"cache": false
},
"devsafe": {
"cache": false,
"persistent": true
},
"generate:experiments": {
"cache": false
},
"migrate": {
"cache": false
}
}
}