-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathturbo.json
More file actions
91 lines (91 loc) · 2.25 KB
/
turbo.json
File metadata and controls
91 lines (91 loc) · 2.25 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
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"env": [
"RISK_APP_SECRET",
"SERVER_NODE_REAL_API_ETH",
"SERVER_NODE_REAL_API_GOERLI",
"CRON_SECRET",
"R2_ENDPOINT",
"R2_ACCESS_KEY_ID",
"R2_SECRET_ACCESS_KEY",
"CF_CACHE_ZONE_ID",
"CF_CACHE_API_TOKEN",
"FIREBASE_PROJECT_ID",
"FIREBASE_CLIENT_EMAIL",
"FIREBASE_PRIVATE_KEY",
"DISCORD_CLIENT_SECRET",
"DISCORD_REDIRECT_URI",
"TELEGRAM_BOT_TOKEN",
"ENABLE_EXPERIMENTAL_COREPACK",
"AFFILIATE_PROGRAM_API_URL",
"SENTRY_ORG",
"SENTRY_PROJECT",
"SENTRY_AUTH_TOKEN",
"NODE_REAL_SUBGRAPH_API_KEY",
"FLAGS_SECRET",
"ZYFI_API_KEY",
"ISR_REVALIDATE_TOKEN",
"NOVU_SECRET_KEY",
"NOVU_CLIENT_APP_ID",
"SOLANA_SWAP_PAGE",
"DUNE_API_KEY"
],
"outputs": ["dist/**", ".next/**/*", "!.next/cache/**", "!.vercel/**/*"]
},
"test": {
"outputs": ["coverage/**"],
"dependsOn": ["^build"]
},
"test:config": {
"dependsOn": ["^build"]
},
"build:storybook": {
"dependsOn": ["^build"],
"outputs": ["storybook-static/**"]
},
"build:uikit": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"build:jupiter": {
"dependsOn": ["@pancakeswap/next-config#build", "@pancakeswap/jupiter-terminal#build"],
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["@pancakeswap/next-config#build"],
"outputs": []
},
"dev": {
"dependsOn": ["@pancakeswap/next-config#build"],
"cache": false,
"persistent": true
},
"dev:jupiter": {
"dependsOn": ["@pancakeswap/next-config#build", "@pancakeswap/jupiter-terminal#dev"],
"cache": false,
"persistent": true
},
"start": {
"cache": false
},
"build:list": {
"outputs": ["list/**"]
},
"integration-test": {
"dependsOn": ["^build"],
"outputs": []
},
"clean": {
"cache": false
},
"test:translations": {
"outputs": [],
"dependsOn": ["build"]
}
}
}