This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
/
turbo.json
86 lines (86 loc) · 2.13 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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"@supaglue/db#build": {
"dependsOn": ["@supaglue/db#generate"]
},
"@supaglue/schemas#build": {
"dependsOn": ["@supaglue/schemas#generate"]
},
"docs#generate": {
"dependsOn": ["//#bundle-openapi"],
"inputs": ["../openapi/**/openapi.bundle.json", "package.json", "*.config.js"],
"outputs": ["docs/docs/api/**"],
"outputMode": "errors-only"
},
"docs#build": {
"dependsOn": ["docs#generate"],
"inputs": [
"docs/**/*",
"src/**/*",
"static/**/*",
"*.config.js",
"sidebars.js",
"package.json",
"../openapi/**/openapi.bundle.json"
],
"outputs": ["build/**"]
},
"mgmt-ui#build": {
"inputs": ["package.json", "tsconfig.json", "*.config.js", "src/**/*", "public/**/*"],
"outputs": [".next/**", "!.next/cache/**"],
"env": ["NEXT_PUBLIC_*"],
"dotEnv": [".env"]
},
"lint-staged": {
"outputMode": "errors-only"
},
"lint": {
"inputs": ["**/*.{js,ts,tsx}"],
"outputMode": "errors-only"
},
"test": {},
"test:integration": {
"cache": false
},
"test:watch": {
"cache": false,
"persistent": true
},
"typecheck": {
"outputMode": "errors-only",
"inputs": ["**/*.{ts,tsx}"]
},
"generate": {
"outputMode": "errors-only"
},
"//#bundle-openapi": {
"inputs": ["openapi/**/*.yaml"],
"outputs": ["openapi/**/openapi.bundle.json"],
"outputMode": "errors-only"
},
"@supaglue/schemas#generate": {
"dependsOn": ["//#bundle-openapi"],
"inputs": ["../../openapi/**/*.yaml"],
"outputs": ["gen/**"],
"outputMode": "errors-only"
},
"@supaglue/db#generate": {
"inputs": ["prisma/schema.prisma"],
"outputMode": "errors-only"
}
},
"globalDependencies": [
"**/.env",
"**/.env.*local",
"tsconfig.json",
".eslintrc.json",
".yarnrc.yml",
".yarnrc.build.yml",
"package.json"
]
}