forked from TrueFiEng/devcon-raffle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathturbo.json
36 lines (36 loc) · 937 Bytes
/
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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"build": {
"env": [
"NEXT_PUBLIC_VOUCHER_REDEEM_DEADLINE",
"NEXT_PUBLIC_INFURA_KEY",
"NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID",
"NEXT_PUBLIC_GITCOIN_REQUIRED_SCORE",
"NODE_ENV",
"GTC_SCORER_API_KEY",
"GTC_SCORER_ID",
"SCORE_ATTESTATION_VERIFIER_ADDRESS",
"SCORE_ATTESTATION_VERIFIER_VERSION",
"SCORE_ATTESTOR_PRIVATE_KEY",
"VOUCHER_CODES",
"AUTH_SECRET",
"WHITELISTED_ORIGINS",
"RATE_LIMIT_GLOBAL",
"RATE_LIMIT_NONCES",
"NONCE_EXPIRY",
"SITE_URL",
"URL"
],
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "build/**", "cache"]
},
"lint": {
"dependsOn": ["^lint"]
},
"test": {
"dependsOn": ["build"]
}
}
}