-
Notifications
You must be signed in to change notification settings - Fork 21
/
turbo.json
62 lines (62 loc) · 1.35 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
54
55
56
57
58
59
60
61
62
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"POSTGRES_PRISMA_URL",
"POSTGRES_URL_NON_POOLING",
"ORIGIN",
"NEXTAUTH_URL",
"NEXTAUTH_SECRET",
"GITHUB_ID",
"GITHUB_SECRET",
"ALLOWED_IPS",
"ALLOWED_GITHUB_IDS",
"NODE_ENV"
],
"tasks": {
"build": {
"dependsOn": ["@minute/prisma#db:generate", "^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"dependsOn": ["@minute/prisma#db:generate"],
"cache": false,
"persistent": true
},
"type-check": {
"dependsOn": ["@minute/prisma#db:generate"],
"cache": false
},
"lint": {
"dependsOn": ["@minute/prisma#db:generate"],
"cache": false
},
"test:e2e": {
"dependsOn": ["@minute/prisma#db:test:reset", "build"],
"cache": false
},
"test:unit": {
"dependsOn": ["@minute/prisma#db:test:reset"],
"cache": false
},
"test:unit:coverage": {
"dependsOn": ["@minute/prisma#db:test:reset"],
"cache": false
},
"start": {
"cache": false
},
"@minute/prisma#db:generate": {
"cache": false
},
"@minute/prisma#db:test:reset": {
"cache": false
},
"clean": {
"cache": false
},
"format:fix": {
"cache": false
}
}
}