forked from azimjon7701/databerry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
49 lines (49 loc) · 1.18 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
{
"$schema": "https://turbo.build/schema.json",
"globalDotEnv": [".env.local"],
"pipeline": {
"prisma:generate": {
"cache": false
},
"prisma:push": {
"cache": false
},
"build": {
"dependsOn": ["^build", "@chaindesk/prisma#prisma:generate"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"outputMode": "new-only"
},
"dev": {
"dotEnv": [".env.local"],
"dependsOn": [
"^dev",
"@chaindesk/prisma#prisma:generate",
"@chaindesk/prisma#prisma:push"
],
"cache": false
},
"lint": {},
"typecheck": {},
"check": {},
"sendDailyLeads": {
"dependsOn": ["@chaindesk/prisma#prisma:generate"],
"cache": false
},
"syncDatasources": {
"dependsOn": ["@chaindesk/prisma#prisma:generate"],
"cache": false
},
"sendWeeklyAdminStats": {
"dependsOn": ["@chaindesk/prisma#prisma:generate"],
"cache": false
},
"sendAccountCleaningWarning": {
"dependsOn": ["@chaindesk/prisma#prisma:generate"],
"cache": false
},
"aiNewsLoad": {
"dependsOn": ["@chaindesk/prisma#prisma:generate"],
"cache": false
}
}
}