-
Notifications
You must be signed in to change notification settings - Fork 1
/
turbo.json
31 lines (31 loc) · 856 Bytes
/
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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NEXT_PUBLIC_CHAIN_ID",
"NEXT_PUBLIC_ALCHEMY_API_KEY",
"NEXT_PUBLIC_ROLLUPS_ENDPOINT",
"NEXT_PUBLIC_APP_ADDRESS",
"NEYNAR_ONCHAIN_KIT_API_KEY",
"WEB_APP_BASE_URL"
],
"pipeline": {
"build": {
"dependsOn": ["^build", "codegen"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"inputs": ["$TURBO_DEFAULT$", ".env"]
},
"clean": {
"cache": false
},
"codegen": {
"outputs": ["src/graphql/**", "src/contracts.ts"]
},
"dev": {
"dependsOn": ["codegen"],
"cache": false,
"persistent": true,
"inputs": ["$TURBO_DEFAULT$", ".env"]
},
"lint": {}
}
}