-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
79 lines (78 loc) · 1.38 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
{
"$schema": "https://turborepo.org/schema.json",
"ui": "stream",
"globalDependencies": [
".env"
],
"globalEnv": [
"JWT_KEY",
"NODE_ENV",
"MAIL_SERVER",
"NEXT_PUBLIC_PRODUCTION_URL",
"NEXT_PUBLIC_API_SERVER_URL",
"PORT",
"SERVER_PORT",
"NEXT_PUBLIC_LOCALES",
"NEXT_PUBLIC_DEFAULT_LOCALE",
"NEXT_PUBLIC_SOCKET",
"NEXT_PUBLIC_ANALYZE",
"DB_NAME",
"SOCKET_PORT",
"DB_HOST",
"DB_USER",
"DB_PASS",
"DB_PORT",
"NEXT_PUBLIC_ALLOWED_IMAGES_SOURCES",
"EXCLUDE_POSTS_SOURCE"
],
"tasks": {
"generateStaticConfig": {
"cache": false,
"outputLogs": "errors-only"
},
"build": {
"dependsOn": [
"generateStaticConfig",
"^build"
],
"outputs": [
"dist/**",
".next/**",
".build/**"
]
},
"dev": {
"dependsOn": [
"generateStaticConfig"
],
"cache": false,
"outputLogs": "errors-only"
},
"graph": {
"cache": false
},
"test": {
"dependsOn": [
"build"
],
"outputs": [],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"test/**/*.ts",
"test/**/*.tsx"
]
},
"lint": {
"outputs": []
},
"deploy": {
"dependsOn": [
"build",
"test",
"lint"
],
"outputs": []
}
}
}