-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
58 lines (58 loc) · 1.02 KB
/
turbo.json
File metadata and controls
58 lines (58 loc) · 1.02 KB
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
54
55
56
57
58
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"dev": {
"cache": false,
"persistent": true,
"env": [
"DATABASE_URL",
"BETTER_AUTH_SECRET",
"BETTER_AUTH_BASE_URL",
"SMTP_HOST",
"SMTP_PORT",
"SMTP_USER",
"SMTP_PASS",
"EMAIL_FROM"
]
},
"build": {
"dependsOn": ["^build"],
"outputs": [".svelte-kit/**", "build/**", "dist/**"]
},
"check": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"],
"cache": false
},
"test:integration": {
"cache": false
},
"test:e2e": {
"cache": false
},
"lint": {
"dependsOn": ["^lint"]
},
"format": {},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:seed": {
"cache": false
},
"db:studio": {
"cache": false
},
"auth:generate": {
"cache": false
}
}
}