forked from elie222/rakazo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
31 lines (31 loc) · 673 Bytes
/
Copy pathturbo.json
File metadata and controls
31 lines (31 loc) · 673 Bytes
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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"generate": {
"cache": false
},
"build": {
"dependsOn": ["^build", "^generate"],
"env": [
"BETTER_AUTH_SECRET",
"DATABASE_URL",
"ENCRYPTION_KEY",
"PUBLIC_POSTHOG_HOST",
"PUBLIC_POSTHOG_KEY"
],
"outputs": ["dist/**", "src/generated/**"]
},
"check": {
"dependsOn": ["^check", "^generate"]
},
"test": {
"dependsOn": ["^generate"],
"outputs": ["coverage/**"]
},
"dev": {
"cache": false,
"env": ["PUBLIC_POSTHOG_HOST", "PUBLIC_POSTHOG_KEY"],
"persistent": true
}
}
}