-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturbo.json
More file actions
83 lines (76 loc) 路 1.96 KB
/
Copy pathturbo.json
File metadata and controls
83 lines (76 loc) 路 1.96 KB
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
{
"$schema": "https://turbo.build/schema.v2.json",
"globalDependencies": ["**/.env.*local"],
"ui": "stream",
"tasks": {
"clean": {},
"build": {
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"dependsOn": [
//
// Certain packages may need to be built first to ensure that the
// correct versions are available for use in the app project.
// You now have the build order you would expect,
// building dependencies before dependents.
"^build"
],
"env": [
"CI",
"CI_CORES",
"NEXT_PUBLIC_SUPABASE_URL",
"NEXT_PUBLIC_SUPABASE_ANON_KEY",
"NEXT_PUBLIC_GA_ID",
"SUPABASE_PROJECT_ID",
"SUPABASE_SERVICE_KEY",
"SUPABASE_DB_PASSWORD",
"JIN10_API_URL",
"JIN10_APP_ID",
"JIN10_HEADER_ORIGIN",
"BETTER_AUTH_SECRET",
"LINE_CLIENT_ID",
"LINE_CLIENT_SECRET",
"TELEGRAM_BOT_TOKEN"
],
//
// outputs: it tells turbo which tasks to cache results for
// so unchanged projects don't need to be rebuilt, which helps speed up the build process
// you only need to include, for example, `'outDir'`, inside each project
// you should not include the cache folders created inside each project
"outputs": [
"dist",
"out",
"public",
".next/**",
"!.next/cache/**",
"!.vercel"
]
},
"tsc": {
"cache": false,
"dependsOn": [
// now, many typings need to be built in advance by the framework
"^build",
"^tsc"
]
},
"format": {
"cache": false
},
"lint": {
"cache": false,
"dependsOn": [
// now, many typings need to be built in advance by the framework
"^build",
"^lint"
]
},
"test": {
"dependsOn": []
},
"dev": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"]
}
}
}