-
Notifications
You must be signed in to change notification settings - Fork 664
Expand file tree
/
Copy pathturbo.json
More file actions
112 lines (112 loc) · 2.79 KB
/
turbo.json
File metadata and controls
112 lines (112 loc) · 2.79 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"$schema": "https://turborepo.org/schema.json",
"globalEnv": ["CI", "TW_SECRET_KEY"],
"tasks": {
"bench": {
"cache": false,
"dependsOn": []
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"clean": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
},
"e2e": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", "src/**", "fixtures/**"],
"outputs": []
},
"e2e:legacy": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", "src/**", "fixtures/**"],
"outputs": []
},
"fix": {
"cache": false,
"outputs": []
},
"format": {
"cache": false
},
"lint": {
"cache": false,
"dependsOn": ["^build"],
"outputs": []
},
"lint:legacy": {
"cache": false,
"outputs": []
},
"playground-web#build": {
"dependsOn": ["^build"],
"env": ["ENGINE_ACCESS_TOKEN", "ENGINE_BACKEND_WALLET", "ENGINE_URL"],
"outputs": [".next/**", "!.next/cache/**"]
},
"portal#build": {
"dependsOn": ["^build", "thirdweb#typedoc"],
"outputs": [".next/**", "!.next/cache/**", "searchIndex.json"]
},
"portal#dev": {
"dependsOn": ["^build", "thirdweb#typedoc"]
},
"storybook": {
"inputs": ["$TURBO_DEFAULT$", "src/**"]
},
"test": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"],
"outputs": ["coverage/**"]
},
"test:legacy": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"],
"outputs": ["coverage/**"]
},
"thirdweb-dashboard#build": {
"dependsOn": ["^build"],
"env": [
"SENTRY_AUTH_TOKEN",
"BEEHIIV_API_KEY",
"API_ROUTES_CLIENT_ID",
"DASHBOARD_SECRET_KEY",
"SIMPLEHASH_API_KEY",
"THIRDWEB_ENGINE_URL",
"THIRDWEB_ACCESS_TOKEN",
"THIRDWEB_ENGINE_ACCESS_TOKEN",
"THIRDWEB_ENGINE_WALLET",
"REDIS_URL",
"ANALYTICS_SERVICE_URL",
"DISABLE_FAUCET_CHAIN_IDS",
"API_SERVER_SECRET",
"TURNSTILE_SECRET_KEY",
"NEXT_PUBLIC_TURNSTILE_SITE_KEY",
"NEXT_PUBLIC_THIRDWEB_ENGINE_FAUCET_WALLET",
"NEXT_PUBLIC_NEBULA_URL",
"INSIGHT_SERVICE_API_KEY",
"STRIPE_SECRET_KEY"
],
"outputs": [".next/**", "!.next/cache/**"]
},
"thirdweb-dashboard#dev": {
"dependsOn": ["^build"]
},
"update-version": {
"inputs": ["$TURBO_DEFAULT$", "package.json"],
"outputs": ["src/version.ts"]
},
"typedoc": {
"dependsOn": ["^build"],
"outputs": ["typedoc/**"]
},
"wallet-ui#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
}
}
}