-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathturbo.json
More file actions
93 lines (93 loc) 路 2.24 KB
/
Copy pathturbo.json
File metadata and controls
93 lines (93 loc) 路 2.24 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
84
85
86
87
88
89
90
91
92
93
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalDependencies": ["packages/config/**", ".oxlintrc.json", ".oxfmtrc.json"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
},
"check:types": {
"dependsOn": ["^build", "build"],
"outputs": []
},
"test:unit": {
"dependsOn": ["^build", "build"],
"outputs": []
},
"@openora/testing#test:integration": {
"dependsOn": ["^build", "build", "@openora/core#test:integration"],
"cache": false,
"passThroughEnv": [
"TEST_DATABASE_URL",
"DATABASE_URL",
"DATABASE_ADMIN_URL",
"TEST_ADMIN_DATABASE_URL",
"TEST_REDIS_URL",
"BETTER_AUTH_SECRET",
"BETTER_AUTH_URL"
]
},
"test:integration": {
"dependsOn": ["^build", "build"],
"cache": false,
"passThroughEnv": [
"TEST_DATABASE_URL",
"DATABASE_URL",
"DATABASE_ADMIN_URL",
"BETTER_AUTH_SECRET",
"BETTER_AUTH_URL"
]
},
"//#check:lint": {
"inputs": [
"**/*.{ts,tsx,mts,cts,js,mjs,cjs,jsx}",
"!.turbo/**",
"!**/node_modules/**",
"!**/dist/**",
"!**/.next/**"
],
"outputs": []
},
"//#check:format": {
"inputs": [
"**/*.{ts,tsx,mts,cts,js,mjs,cjs,jsx,json,jsonc,md,mdx,css,yml,yaml}",
"!.turbo/**",
"!**/node_modules/**",
"!**/dist/**",
"!**/.next/**"
],
"outputs": []
},
"//#check:boundaries": {
"inputs": [
"apps/**",
"packages/**",
".dependency-cruiser.cjs",
"!**/node_modules/**",
"!**/dist/**",
"!**/.next/**"
],
"outputs": []
},
"//#check:shape": {
"inputs": ["packages/core/src/**", "tools/lint/verify-module-shape.ts"],
"outputs": []
},
"//#check:deprecations": {
"inputs": ["apps/*/src/**", "packages/*/src/**", "tools/**", "extensions.config.ts"],
"outputs": []
},
"//#test:tools": {
"inputs": ["tools/**"],
"outputs": []
}
}
}