forked from saleor/saleor-checkout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
43 lines (43 loc) · 792 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
37
38
39
40
41
42
43
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build",
"$SALEOR_API_URL",
"$CHECKOUT_API_URL",
"$REACT_APP_SALEOR_API_URL",
"$REACT_APP_CHECKOUT_APP_URL",
"$SALEOR_APP_TOKEN",
"$NEXT_PUBLIC_SALEOR_API_URL",
"$SETTINGS_ENCRYPTION_SECRET"
],
"outputs": [
"dist/**",
".next/**",
"build/**"
]
},
"lint": {
"outputs": []
},
"check-types": {
"dependsOn": [
"@saleor/ui-kit#build"
]
},
"test": {},
"dev": {
"cache": false
},
"generate": {
"dependsOn": [
"$SALEOR_API_URL"
]
}
},
"globalDependencies": [
".env",
".env.local"
]
}