-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathturbo.json
82 lines (82 loc) · 1.99 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
72
73
74
75
76
77
78
79
80
81
82
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"build:packages": {
"outputs": ["dist/**"]
},
"council-ui#build": {
"dependsOn": ["^build"],
"outputs": [".next/**"],
"env": [
"NODE_ENV",
"NEXT_PUBLIC_MAINNET_RPC_URL",
"NEXT_PUBLIC_GOERLI_RPC_URL",
"NEXT_PUBLIC_LOCAL_RPC_URL",
"NEXT_PUBLIC_COUNCIL_UI_BASE_PATH",
"NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID"
]
},
"council-sdk-starter#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["PROVIDER_URI", "WALLET_PRIVATE_KEY", "NODE_ENV"]
},
"@council/sdk#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["PROVIDER_URI", "EXAMPLE_WALLET_PRIVATE_KEY", "NODE_ENV"]
},
"@council/cli": {
"env": [
"RPC_URL",
"WALLET_PRIVATE_KEY",
"CHAIN",
"VOTING_TOKEN_ADDRESS",
"VOTING_TOKEN_DECIMALS",
"VOTING_TOKEN_NAME",
"VOTING_TOKEN_SYMBOL",
"BASE_QUORUM",
"MIN_PROPOSAL_POWER",
"LOCK_DURATION",
"EXTRA_VOTING_BLOCKS",
"TIMELOCK_WAIT_TIME",
"TREASURY_ADDRESS",
"STALE_BLOCK_LAG",
"GSC_QUORUM",
"GSC_LOCK_DURATION",
"GSC_EXTRA_VOTING_BLOCKS",
"GSC_VOTING_POWER_BOUND",
"GSC_IDLE_DURATION"
]
},
"@council/cli#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["NODE_ENV"]
},
"@delvtech/council-viem": {
"env": ["TEST_RPC_URL"]
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"dependsOn": ["^build"]
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": []
},
"dev": {
"cache": false
},
"format": { "outputs": [] },
"format:check": { "outputs": [] }
}
}