-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
turbo.json
83 lines (83 loc) · 1.76 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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["NODE_ENV"],
"globalPassThroughEnv": ["DISPLAY", "NODE_OPTIONS", "CI", "COREPACK_HOME"],
"globalDependencies": [".npmrc", ".nvmrc", "tsconfig.json"],
"ui": "stream",
"tasks": {
"build": {
"dependsOn": ["^build", "generate"],
"inputs": [
"$TURBO_DEFAULT$",
"!test/**",
"!.eslintrc",
"!README.md",
".env.production.local",
".env.local",
".env.production",
".env"
],
"outputs": [
"storybook-static/**",
".next/**/*",
"!.next/cache/**",
".vercel/**/*",
"dist/**/*"
],
"env": ["EDGE_CONFIG"]
},
"clean": {
"cache": false
},
"check": {
"dependsOn": ["^build"],
"cache": false
},
"dev": {
"dependsOn": ["^build", "generate"],
"cache": false,
"persistent": true,
"inputs": [
"$TURBO_DEFAULT$",
".env.development.local",
".env.local",
".env.development",
".env"
]
},
"generate": {
"outputs": ["src/generated.ts"],
"cache": false
},
"lint": {
"inputs": [
"$TURBO_DEFAULT$",
"biome.json",
".eslintignore",
".eslint.js",
".eslintrc.js"
],
"dependsOn": ["^build"]
},
"start": {
"dependsOn": ["^build", "generate"],
"env": [
"API_BASE_URL",
"APP_ENV",
"DRPC_ID",
"EDGE_CONFIG",
"RSK_ID",
"VERCEL_ENV",
"SENTRY_DSN",
"SENTRY_ENVIRONMENT",
"SENTRY_AUTH_TOKEN"
],
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["build"],
"outputs": ["coverage/**/*"]
}
}
}