-
Notifications
You must be signed in to change notification settings - Fork 4
/
turbo.json
51 lines (51 loc) · 1.43 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
{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/development",
"pipeline": {
"build": {
},
"awwrats#build": {
"dependsOn": ["codegen", "^compile", "lint", "$NEXT_PUBLIC_SIGNER_MESSAGE", "$NEXT_PUBLIC_INFURA_ID", "$HASURA_ADMIN_SECRET", "$NEXT_PUBLIC_HASURA_BASE_URL","$GENERATOR_URL", "$NEXT_PUBLIC_CONTRACT_ADDRESS", "$NEXT_PUBLIC_CLOSET_ADDRESS", "$NEXT_PUBLIC_CHAIN_ID", "$NEXT_PUBLIC_RPC_URL", "$GCP_PRIVATE_KEY", "$GCP_CLIENT_EMAIL", "$MORALIS_API_KEY", "$NEXT_PUBLIC_OPEN_MINTING"],
"outputs": [
".next/**"
]
},
"backtalk#build": {
"dependsOn": ["codegen", "^compile", "lint", "$NEXT_PUBLIC_SIGNER_MESSAGE", "$NEXT_PUBLIC_INFURA_ID", "$HASURA_ADMIN_SECRET", "$NEXT_PUBLIC_HASURA_BASE_URL", "$NEXT_PUBLIC_FEEDER_ID"],
"outputs": [
".next/**"
]
},
"lint": {
"outputs": []
},
"format": {
"outputs": []
},
"dev": {
"cache": false,
"dependsOn": ["codegen", "^compile"]
},
"check-types": {
"dependsOn": ["codegen", "^compile"],
"outputs": []
},
"compile": {
"inputs": ["src/contracts/**/*"],
"outputs": [
"artifacts/**/*",
".openzeppelin/**/*",
"cache/**/*",
"src/types/typechain/**/*"
]
},
"codegen": {
"inputs": [
"src/schema/**/*.gql"
],
"outputs": [
"src/schema/generated.ts"
]
}
}
}