-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathturbo.json
More file actions
56 lines (56 loc) · 1.17 KB
/
turbo.json
File metadata and controls
56 lines (56 loc) · 1.17 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
{
"$schema": "https://turborepo.dev/schema.v2.json",
"globalDependencies": [".env"],
"globalEnv": [
"AI_GATEWAY_API_KEY",
"AXIOM_TOKEN",
"AXIOM_DATASET",
"OTLP_ENDPOINT",
"POSTHOG_API_KEY",
"POSTHOG_HOST",
"SENTRY_DSN",
"BETTER_STACK_SOURCE_TOKEN"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".vercel/output/**", "dist/**", ".output/**", ".nuxt/**"],
"env": [
"NUXT_STUDIO_SSO_URL",
"NUXT_STUDIO_SSO_CLIENT_ID",
"NUXT_STUDIO_SSO_CLIENT_SECRET",
"AI_GATEWAY_API_KEY",
"NUXT_SITE_URL",
"AXIOM_TOKEN"
]
},
"dev": {
"dependsOn": ["dev:prepare"],
"cache": false,
"persistent": true,
"env": [
"AI_GATEWAY_API_KEY"
]
},
"dev:prepare": {
"dependsOn": ["^dev:prepare"],
"outputs": ["dist/**", ".output/**", ".nuxt/**"]
},
"lint": {
"dependsOn": ["^build"]
},
"lint:fix": {
"cache": false
},
"bench": {
"dependsOn": ["^build"],
"cache": false
},
"test": {
"dependsOn": ["^build"]
},
"typecheck": {
"dependsOn": ["^build"]
}
}
}