forked from sushi-labs/sushiswap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
97 lines (97 loc) · 2.06 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",
"globalEnv": [],
"globalPassThroughEnv": [],
"globalDependencies": [".npmrc", ".nvmrc", "tsconfig.json"],
"tasks": {
"anvil": {
"cache": false,
"env": ["ANVIL_BLOCK_NUMBER", "ANVIL_FORK_URL", "ANVIL_PORT"],
"persistent": true
},
"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": [
".mesh/**/*",
".graphclient/**/*",
"src/generated.ts",
"typechain"
],
"cache": false
},
"lint": {
"inputs": [
"$TURBO_DEFAULT$",
"biome.json",
".eslintignore",
".eslint.js",
".eslintrc.js"
],
"dependsOn": ["^build"]
},
"start": {
"dependsOn": ["^build", "generate", "export"],
"env": [
"ALCHEMY_ID",
"APP_ENV",
"DATABASE_URL",
"DRPC_ID",
"EDGE_CONFIG",
"RSK_ID",
"POOLS_API_V0_BASE_URL",
"REDIS_URL",
"SWAP_API_V0_BASE_URL",
"TOKENS_API_V0_BASE_URL",
"STRAPI_API_URL",
"VERCEL_ENV",
"SENTRY_DSN",
"SENTRY_ENVIRONMENT"
],
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["build"],
"outputs": ["coverage/**/*"]
}
}
}