-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
44 lines (44 loc) · 1007 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local", "**/.env"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"deploy": {
"dependsOn": ["build"],
"outputs": ["dist/**"]
},
"dev": {
"persistent": true
},
"lint": {},
"sentry:sourcemaps": {},
"start": {
"cache": false
},
"test": {},
"@ethglobal-sf-2024/sdk#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"cache": false
},
"frontend#build": {
"dependsOn": ["^build"],
"outputs": ["out/**", ".next/**"],
"env": [
"STATIC_EXPORT",
"NEXT_PUBLIC_SEGMENT_KEY",
"PLASMIC_PROJECT_ID",
"PLASMIC_PROJECT_API_TOKEN",
"NEXT_PUBLIC_DOMAIN",
"NEXT_PUBLIC_SUPABASE_URL",
"NEXT_PUBLIC_SUPABASE_ANON_KEY",
"SUPABASE_SERVICE_KEY",
"SUPABASE_JWT_SECRET"
],
"cache": false
}
}
}