-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
68 lines (68 loc) · 1.78 KB
/
turbo.json
File metadata and controls
68 lines (68 loc) · 1.78 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["NODE_ENV", "DENO_ENV", "TAURI_ENV"],
"remoteCache": {
"enabled": true,
"signature": true
},
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "build/**", "target/**"],
"env": ["DENO_ENV", "NODE_ENV", "TAURI_*"],
"cache": true
},
"dev": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["build"],
"outputs": ["coverage/**"],
"cache": true,
"inputs": ["src/**", "tests/**", "*.test.ts", "*.test.tsx"]
},
"lint": {
"outputs": [],
"cache": true,
"inputs": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"]
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": [],
"cache": true
},
"clean": {
"cache": false
},
"deploy": {
"dependsOn": ["build", "test", "lint"],
"outputs": ["dist/**"],
"cache": false
},
"@katalyst/multithreading#build": {
"outputs": ["*.node", "target/**"],
"cache": true,
"env": ["CARGO_*", "RUST_*"]
},
"@katalyst/desktop#build": {
"dependsOn": ["@katalyst/core#build", "@katalyst/multithreading#build"],
"outputs": ["src-tauri/target/**", "dist/**"],
"env": ["TAURI_*"],
"cache": true
},
"@katalyst/mobile#build": {
"dependsOn": ["@katalyst/core#build"],
"outputs": ["ios/build/**", "android/build/**", "dist/**"],
"cache": true
},
"@katalyst/metaverse#build": {
"dependsOn": ["@katalyst/core#build", "@katalyst/webxr#build"],
"outputs": ["dist/**", "wasm/**"],
"env": ["WASM_*", "WASMER_*"],
"cache": true
}
}
}