|
3 | 3 | "globalEnv": ["CI", "TW_SECRET_KEY"], |
4 | 4 | "tasks": { |
5 | 5 | "build": { |
6 | | - "outputs": ["dist/**"], |
7 | | - "dependsOn": ["^build"] |
8 | | - }, |
9 | | - "postbuild": { |
10 | | - "dependsOn": ["^postbuild"], |
| 6 | + "inputs": ["$TURBO_DEFAULT$", ".env*"], |
11 | 7 | "outputs": [ |
| 8 | + "build/**", |
| 9 | + ".vercel/**", |
12 | 10 | "dist/**", |
13 | 11 | ".next/**", |
14 | | - "public/robots.txt", |
15 | | - "public/sitemap*.xml", |
16 | | - "searchIndex.json" |
17 | | - ] |
18 | | - }, |
19 | | - "bench": { |
20 | | - "cache": false, |
21 | | - "dependsOn": [] |
| 12 | + "!.next/cache/**" |
| 13 | + ], |
| 14 | + "dependsOn": ["^build"] |
22 | 15 | }, |
23 | 16 | "typedoc": { |
24 | 17 | "outputs": ["typedoc/**"], |
25 | 18 | "dependsOn": ["^build"] |
26 | 19 | }, |
27 | | - "thirdweb-dashboard#build": { |
28 | | - "env": [ |
29 | | - "SENTRY_AUTH_TOKEN", |
30 | | - "MORALIS_API_KEY", |
31 | | - "ETHERSCAN_KEY", |
32 | | - "SSR_ALCHEMY_KEY", |
33 | | - "BEEHIIV_API_KEY", |
34 | | - "GITHUB_API_TOKEN", |
35 | | - "LUMA_API_KEY", |
36 | | - "HUBSPOT_ACCESS_TOKEN", |
37 | | - "API_ROUTES_CLIENT_ID", |
38 | | - "DASHBOARD_SECRET_KEY", |
39 | | - "SIMPLEHASH_API_KEY", |
40 | | - "NEYNAR_API_KEY", |
41 | | - "THIRDWEB_ENGINE_URL", |
42 | | - "THIRDWEB_ACCESS_TOKEN", |
43 | | - "THIRDWEB_ENGINE_ACCESS_TOKEN", |
44 | | - "DEGEN_THIRDWEB_ENGINE_WALLET", |
45 | | - "THIRDWEB_ENGINE_WALLET", |
46 | | - "UNTHREAD_TRIAGE_CHANNEL_ID", |
47 | | - "UNTHREAD_EMAIL_INBOX_ID", |
48 | | - "UNTHREAD_FREE_TIER_ID", |
49 | | - "UNTHREAD_GROWTH_TIER_ID", |
50 | | - "UNTHREAD_PRO_TIER_ID", |
51 | | - "REDIS_URL", |
52 | | - "UNTHREAD_API_KEY", |
53 | | - "CHAINSAW_API_KEY", |
54 | | - "ANALYTICS_SERVICE_URL", |
55 | | - "ANALYTICS_SERVICE_API_KEY", |
56 | | - "DISABLE_FAUCET_CHAIN_IDS", |
57 | | - "API_SERVER_SECRET", |
58 | | - "TURNSTILE_SECRET_KEY", |
59 | | - "NEXT_PUBLIC_TURNSTILE_SITE_KEY", |
60 | | - "NEXT_PUBLIC_THIRDWEB_ENGINE_FAUCET_WALLET" |
61 | | - ], |
62 | | - "outputs": [".next/**", "!.next/cache/**"], |
63 | | - "dependsOn": ["^build"] |
64 | | - }, |
65 | 20 | "portal#build": { |
66 | | - "outputs": [".next/**", "!.next/cache/**", "searchIndex.json"], |
67 | 21 | "dependsOn": ["^build", "thirdweb#typedoc"] |
68 | 22 | }, |
69 | 23 | "portal#dev": { |
70 | 24 | "dependsOn": ["^build", "thirdweb#typedoc"] |
71 | 25 | }, |
72 | | - "playground-web#build": { |
73 | | - "outputs": [".next/**", "!.next/cache/**"], |
74 | | - "dependsOn": ["^build"] |
75 | | - }, |
76 | | - "wallet-ui#build": { |
77 | | - "outputs": [".next/**", "!.next/cache/**"], |
78 | | - "dependsOn": ["^build"] |
79 | | - }, |
80 | 26 | "thirdweb#update-version": { |
81 | 27 | "inputs": ["$TURBO_DEFAULT$", "package.json"], |
82 | 28 | "outputs": ["src/version.ts"] |
|
89 | 35 | "storybook": { |
90 | 36 | "inputs": ["$TURBO_DEFAULT$", "src/**"] |
91 | 37 | }, |
92 | | - "test:legacy": { |
93 | | - "outputs": ["coverage/**"], |
94 | | - "inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"], |
95 | | - "dependsOn": ["^build"] |
96 | | - }, |
97 | 38 | "e2e": { |
98 | 39 | "outputs": [], |
99 | 40 | "inputs": ["$TURBO_DEFAULT$", "src/**", "fixtures/**"], |
100 | 41 | "dependsOn": ["^build"] |
101 | 42 | }, |
102 | | - "e2e:legacy": { |
103 | | - "outputs": [], |
104 | | - "inputs": ["$TURBO_DEFAULT$", "src/**", "fixtures/**"], |
105 | | - "dependsOn": ["^build"] |
| 43 | + "bench": { |
| 44 | + "cache": false |
106 | 45 | }, |
107 | 46 | "lint": { |
108 | 47 | "cache": false, |
|
120 | 59 | "cache": false |
121 | 60 | }, |
122 | 61 | "dev": { |
| 62 | + "dependsOn": ["^build"], |
123 | 63 | "cache": false, |
124 | 64 | "persistent": true |
125 | 65 | }, |
126 | | - "thirdweb-dashboard#dev": { |
127 | | - "dependsOn": ["^build"] |
128 | | - }, |
129 | 66 | "clean": { |
130 | 67 | "cache": false |
131 | 68 | } |
|
0 commit comments