-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathturbo.json
53 lines (53 loc) · 1.13 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"**/.env.*local",
"**/.env.local",
"**/.env.*",
"**/.env"
],
"globalEnv": [
"NODE_ENV",
"JWT_SECRET",
"HMS_MANAGEMENT_TOKEN",
"HMS_TEMPLATE_ID",
"PROD_CLIENT_URL",
"DEV_CLIENT_URL"
],
"pipeline": {
"build": {
"dependsOn": [
"^build",
"^db:generate",
"^db:push",
"^db:scrape"
],
"outputs": [
".next/**",
"!.next/cache/**"
]
},
"lint": {},
"dev": {
"dependsOn": [
"^dev",
"^db:generate",
"^db:scrape"
],
"cache": false,
"persistent": true
},
"db:generate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:scrape": {
"dependsOn": [
"db:generate"
],
"cache": false
}
}
}