forked from superfluid-finance/widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
71 lines (71 loc) · 1.93 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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["GITHUB_TOKEN"],
"globalDependencies": ["**/.env.*local", "tsconfig.json"],
"pipeline": {
"tsc": {
"dependsOn": ["^tsc"],
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"@superfluid-finance/widget#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "docs/**"]
},
"@superfluid-finance/widget-builder#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"],
"env": [
"NEXT_PUBLIC_SENTRY_DSN",
"NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID",
"NEXT_PUBLIC_GOOGLE_FONTS_API_KEY",
"NEXT_PUBLIC_EXPORT_BASE_URL",
"NEXT_PUBLIC_SEGMENT_WRITE_KEY",
"NEXT_PUBLIC_PINATA_API_KEY",
"NEXT_PUBLIC_PINATA_API_SECRET",
"NEXT_PUBLIC_INTERCOM_SURVEY_ID"
]
},
"@superfluid-finance/hosted-widget#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"],
"env": [
"NEXT_PUBLIC_SENTRY_DSN",
"NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID",
"NEXT_PUBLIC_SEGMENT_WRITE_KEY",
"NEXT_PUBLIC_THE_THING",
"NEXT_PUBLIC_DEMO_IPFS",
"ROOT_REDIRECT_URL",
"NEXT_PUBLIC_ROOT_REDIRECT_URL"
]
},
"@superfluid-finance/b2b-service-demo#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"@superfluid-finance/gated-community-demo#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"test": {
"dependsOn": ["build"],
"env": [
"NEXT_PUBLIC_THE_THING",
"CI",
"METAMASK_VERSION",
"HEADLESS_MODE",
"WIDGET_WALLET_PRIVATE_KEY",
"BASE_URL",
"WIDGET_WALLET_PUBLIC_KEY"
]
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
}
}
}