-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathturbo.json
97 lines (97 loc) · 2.24 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
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
89
90
91
92
93
94
95
96
97
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^build", "^compile", "codegen"]
},
"codegen": {
"cache": false
},
"compile": {
"outputs": ["dist/**"],
"dependsOn": ["^compile"],
"env": ["NODE_ENV", "VERCEL_ENV"]
},
"check-types": {
"dependsOn": ["^compile"]
},
"lint": {},
"lint:eslint": {},
"lint:style": {},
"lint:eslint:fix": {},
"lint:style:fix": {},
"format:check": {},
"depcheck": {},
"clean": {
"cache": false
},
"format": {},
"test": {
"dependsOn": ["compile"]
},
"test-db": {
"dependsOn": ["compile"]
},
"test-ete": {
"dependsOn": ["compile"]
},
"dev": {
"persistent": true
},
"docs:dev": {
"persistent": true,
"dependsOn": ["^build", "^compile"],
"inputs": [
"$TURBO_DEFAULT$",
".env.production.local",
".env.local",
".env.production",
".env"
]
},
"docs:build": {
"dependsOn": ["^build", "^compile", "^docs:build"],
"env": [
"ALGOLIA_API_KEY",
"ALGOLIA_APP_ID",
"ALGOLIA_SEARCH_API_KEY",
"ALGOLIA_WRITE_API_KEY",
"ANTHROPIC_API_KEY",
"ANALYZE",
"AWS_ACCESS_KEY_ID",
"AWS_S3_ENDPOINT",
"AWS_REGION",
"AWS_S3_BUCKET_NAME",
"AWS_SECRET_ACCESS_KEY",
"COHERE_API_KEY",
"EDGE_CONFIG",
"ENABLE_ROOT_PATH_BUILD_CACHE",
"ENABLE_SOURCE_MAPS",
"FERN_TOKEN",
"JWT_SECRET_KEY",
"KV_REST_API_READ_ONLY_TOKEN",
"KV_REST_API_TOKEN",
"KV_REST_API_URL",
"KV_URL",
"NODE_ENV",
"OPENAI_API_KEY",
"QSTASH_CURRENT_SIGNING_KEY",
"QSTASH_NEXT_SIGNING_KEY",
"QSTASH_TOKEN",
"QSTASH_URL",
"TRAILING_SLASH",
"TURBOPUFFER_API_KEY",
"VERCEL",
"VERCEL_AUTOMATION_BYPASS_SECRET",
"VERCEL_DEPLOYMENT_ID",
"VERCEL_ENV",
"VERCEL_URL",
"WORKOS_API_KEY",
"WORKOS_CLIENT_ID",
"HIGHLIGHT_PROJECT_ID_FERN_APP"
]
}
},
"globalDependencies": ["eslint.config.mjs", ".prettierrc.json"]
}