-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathturbo.json
More file actions
92 lines (92 loc) · 2.39 KB
/
Copy pathturbo.json
File metadata and controls
92 lines (92 loc) · 2.39 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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "index.js", "index.d.ts", "*.node"],
"inputs": ["src/**", "package.json", "tsconfig.json"]
},
"shift-bridge#build": {
"inputs": [
"src/**",
"package.json",
"Cargo.toml",
"dts-header.d.ts",
"$TURBO_ROOT$/Cargo.toml",
"$TURBO_ROOT$/Cargo.lock",
"$TURBO_ROOT$/crates/*/Cargo.toml",
"$TURBO_ROOT$/crates/*/src/**"
],
"outputs": ["index.js", "index.d.ts", "*.node"]
},
"generate:bridge-types": {
"inputs": [
"$TURBO_ROOT$/crates/shift-bridge/index.d.ts",
"$TURBO_ROOT$/crates/shift-bridge/dts-header.d.ts",
"$TURBO_ROOT$/scripts/generate-bridge-types.mjs"
],
"outputs": ["src/bridge/generated.ts"]
},
"generate": {
"outputs": ["resources/**"]
},
"typecheck": {
"dependsOn": ["^generate:bridge-types", "generate:bridge-types"],
"outputs": []
},
"@shift/glyph-info#typecheck": {
"dependsOn": ["generate"],
"outputs": []
},
"@shift/desktop#typecheck": {
"dependsOn": [
"@shift/glyph-info#generate",
"^generate:bridge-types",
"generate:bridge-types"
],
"outputs": []
},
"lint": {
"outputs": []
},
"lint:check": {
"outputs": []
},
"test": {
"outputs": [],
"inputs": ["src/**", "*.config.ts"]
},
"@shift/glyph-info#test": {
"dependsOn": ["generate"],
"outputs": [],
"inputs": ["src/**", "*.config.ts"]
},
"@shift/desktop#test": {
"dependsOn": ["^build", "@shift/glyph-info#generate"],
"outputs": [],
"inputs": ["src/**", "*.config.ts"]
},
"shift-bridge#test": {
"dependsOn": ["build"],
"outputs": [],
"inputs": ["src/**", "*.config.ts"]
},
"test:watch": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"@shift/glyph-info#test:watch": {
"dependsOn": ["generate"],
"cache": false,
"persistent": true
},
"@shift/desktop#test:watch": {
"dependsOn": ["^build", "@shift/glyph-info#generate"],
"cache": false,
"persistent": true
}
},
"globalEnv": ["NODE_ENV"],
"globalPassThroughEnv": ["CARGO_INCREMENTAL", "RUSTFLAGS", "CARGO_HOME", "RUSTUP_HOME"]
}