-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathturbo.json
70 lines (70 loc) · 1.6 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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NEXTAUTH_URL",
"NEXTAUTH_SECRET",
"NEXT_PUBLIC_FOUNDRY_FACTORY_CONTRACT_ADDRESS",
"NEXT_PUBLIC_FOUNDRY_BLOCK_EXPLORER_URL",
"NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID",
"NEXT_PUBLIC_INFURA_API_KEY",
"INFURA_IPFS_API_KEY",
"INFURA_IPFS_API_SECRET",
"NEXT_PUBLIC_IPFS_GATEWAY_URL",
"SNAPSHOT_API_KEY"
],
"globalDotEnv": [
".env"
],
"pipeline": {
"generate": {
"cache": false
},
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**/*",
".next/**/*",
"!.next/cache/**",
".vercel/**/*"
]
},
"deploy": {
"dependsOn": [
"build",
"^deploy"
],
"outputs": [
"dist/**/*",
".next/**/*",
"!.next/cache/**",
".vercel/**/*"
]
},
"check": {
"dependsOn": [
"^build"
],
"cache": false
},
"clean": {
"cache": false
},
"dev": {
"dependsOn": [
"^build"
],
"cache": false,
"persistent": true
},
"start": {
"dependsOn": [
"^build"
],
"cache": false,
"persistent": true
},
"lint": {}
}
}