forked from homarr-labs/homarr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
65 lines (65 loc) · 1.63 KB
/
Copy pathturbo.json
File metadata and controls
65 lines (65 loc) · 1.63 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
{
"$schema": "https://turborepo.org/schema.json",
"remoteCache": { "signature": false },
"globalEnv": ["CI", "NODE_ENV", "SKIP_ENV_VALIDATION"],
"ui": "stream",
"futureFlags": {
"affectedUsingTaskInputs": true
},
"tasks": {
"topo": {
"dependsOn": ["^topo"],
"inputs": ["package.json"]
},
"build": {
"dependsOn": ["^build"],
"inputs": [
"$TURBO_DEFAULT$",
"!**/*.test.ts",
"!**/*.test.tsx",
"!**/*.spec.ts",
"!**/__tests__/**",
"!**/*.md",
"!**/*.mdx",
"!**/README*",
"!**/CHANGELOG*",
"!**/LICENSE*",
"!**/*.stories.{ts,tsx}"
],
"outputs": [".next/**", "!.next/cache/**", "next-env.d.ts", ".output/**", ".vercel/output/**", "build/**"]
},
"@homarr/cli#build": {
"outputs": ["cli.cjs"]
},
"@homarr/db#build": {
"outputs": ["migrations/sqlite/migrate.cjs", "migrations/mysql/migrate.cjs", "migrations/postgresql/migrate.cjs"]
},
"@homarr/docs#build": {
"inputs": ["$TURBO_DEFAULT$", "../../packages/definitions/src/docs/**"],
"outputs": ["build/**", ".docusaurus/**"]
},
"dev": {
"persistent": true,
"cache": false
},
"format": {
"inputs": ["$TURBO_DEFAULT$"],
"outputLogs": "new-only"
},
"lint": {
"dependsOn": ["^topo"],
"inputs": ["$TURBO_DEFAULT$"]
},
"typecheck": {
"dependsOn": ["^topo"],
"inputs": ["$TURBO_DEFAULT$"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"clean": {
"cache": false
},
"//#clean": {
"cache": false
}
}
}