-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathturbo.json
87 lines (87 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"EXPO_PUBLIC_GOOGLE_WEB_CLIENT_ID",
"EXPO_PUBLIC_GOOGLE_IOS_CLIENT_ID"
],
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build", "db:generate"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [
".next/**",
"!.next/cache/**",
"next-env.d.ts",
".expo/**",
".output/**",
".vercel/output/**",
"dist/**"
]
},
"lint": {
"dependsOn": ["^lint"],
"outputs": ["node_modules/.cache/.eslintcache"]
},
"lint-staged": {
"dependsOn": ["^lint-staged"],
"outputs": ["node_modules/.cache/.lint-staged"]
},
"typecheck": {
"dependsOn": ["^typecheck"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"format": {
"outputs": ["node_modules/.cache/.prettiercache"]
},
"dev": {
"persistent": true,
"cache": false
},
"test": {
"dependsOn": ["build"],
"outputs": ["coverage/**"],
"cache": true
},
"test:watch": {
"cache": false,
"persistent": true
},
"e2e:dev": {
"cache": false
},
"e2e:ci": {
"dependsOn": ["^build"],
"outputs": ["playwright-report/**", "test-results/**"]
},
"db:generate": {
"cache": false
},
"db:push": {
"cache": false
},
"clean": {
"cache": false
}
},
"globalEnv": [
"NEXTAUTH_SECRET",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"POSTGRES_PRISMA_URL",
"POSTGRES_URL_NON_POOLING",
"CLOUDINARY_KEY",
"CLOUDINARY_SECRET",
"FONTAWESOME_NPM_AUTH_TOKEN",
"SENTRY_AUTH_TOKEN",
"NEXT_PUBLIC_BASE_URL",
"NODE_ENV",
"VERCEL_ENV",
"EXPO_PUBLIC_ENVIRONMENT",
"FIREBASE_PROJECT_ID",
"FIREBASE_CLIENT_EMAIL",
"FIREBASE_PRIVATE_KEY",
"EXPO_PUBLIC_GOOGLE_WEB_CLIENT_ID",
"EXPO_PUBLIC_GOOGLE_IOS_CLIENT_ID"
]
}