forked from code100x/chess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
40 lines (40 loc) · 797 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"**/.env.*local",
"COOKIE_SECRET",
"ALLOWED_HOSTS",
"PORT",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"FACEBOOK_APP_ID",
"FACEBOOK_APP_SECRET",
"AUTH_REDIRECT_URL",
"JWT_SECRET"
],
"pipeline": {
"build": {
"dependsOn": ["db:generate", "^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"lint:fix": {
"dependsOn": ["^lint:fix"]
},
"dev": {
"dependsOn": ["^db:generate"],
"cache": false,
"persistent": true
},
"db:generate": {
"cache": false
},
"db:push": {
"cache": false
}
}
}