-
Notifications
You must be signed in to change notification settings - Fork 20
/
turbo.json
42 lines (42 loc) · 892 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local", "**/.env"],
"globalEnv": [
"NODE_ENV",
"BASE_URL",
"BASE_DOMAIN",
"POSTGRES_PRISMA_URL",
"POSTGRES_URL_NON_POOLING"
],
"tasks": {
"start": {},
"@premieroctet/next-admin#build": {
"dependsOn": ["example#generate"]
},
"example#generate": {
"dependsOn": ["@premieroctet/next-admin-generator-prisma#build"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
},
"test": {},
"test:coverage": {},
"test:e2e": {},
"database": {},
"typecheck": {},
"reset-database": {
"cache": false
},
"clean": {},
"generate": {}
},
"ui": "stream"
}