-
Notifications
You must be signed in to change notification settings - Fork 400
Expand file tree
/
Copy pathturbo.json
More file actions
76 lines (76 loc) · 1.67 KB
/
turbo.json
File metadata and controls
76 lines (76 loc) · 1.67 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
{
"$schema": "https://turbo.build/schema.v2.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"APP_LOG_LEVEL",
"CI",
"ENABLE_EXPERIMENTAL_COREPACK",
"ENV",
"GITHUB_SHA",
"NEXT_RUNTIME",
"NEXT_RUNTIME",
"NODE_ENV",
"OTEL_ACCESS_TOKEN",
"OTEL_ENABLED",
"OTEL_EXPORTER_OTLP_ENDPOINT",
"OTEL_LOG_LEVEL",
"OTEL_SERVICE_NAME",
"OTEL_TRACES_SAMPLER_ARG",
"OTEL_TRACES_SAMPLER",
"PORT",
"REPOSITORY_URL",
"SENTRY_ORG",
"VERCEL_ENV",
"VERCEL_GIT_COMMIT_SHA",
"VERCEL_URL",
"VERCEL"
],
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", ".vercel/**", "!.next/cache/**"],
"inputs": ["$TURBO_DEFAULT$", ".env"]
},
"check-types": {
"dependsOn": ["topo"]
},
"deploy": {
"dependsOn": ["^build"],
"outputs": [".next/**", ".vercel/**", "!.next/cache/**"],
"inputs": ["$TURBO_DEFAULT$", ".env"]
},
"dev": {
"dependsOn": ["^dev"],
"cache": false,
"persistent": true
},
"generate": {
"dependsOn": ["topo"],
"outputs": ["generated/**"],
"cache": false
},
"lint": {
"dependsOn": ["topo"]
},
"lint:fix": {
"dependsOn": ["topo"]
},
"start": {
"dependsOn": ["^build", "^start"],
"cache": false,
"persistent": true
},
"test": {
"cache": false,
"persistent": true
},
"test:ci": {
"dependsOn": ["topo"],
"inputs": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/**/*.spec.ts", "src/**/*.spec.tsx"],
"outputs": ["coverage/**"]
}
}
}