-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.config.json
More file actions
43 lines (43 loc) · 893 Bytes
/
task.config.json
File metadata and controls
43 lines (43 loc) · 893 Bytes
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
{
"$schema": "https://getbizi.dev/schemas/task.config.json",
"tasks": {
"dev": {
"tasks": {
"generate": {
"command": "pnpm tsx scripts/generate.ts"
},
"packages": {
"command": "pnpm --filter './packages/*' dev",
"dependsOn": ["dev:generate"]
},
"docs": {
"command": "pnpm --filter www dev"
}
}
},
"format": {
"tasks": {
"ultracite": {
"command": "pnpm ultracite fix"
},
"cargo": {
"command": "cargo fmt"
}
}
},
"check": {
"dependsOn": ["format"],
"tasks": {
"ultracite": {
"command": "pnpm ultracite check"
},
"cargo": {
"command": "cargo check"
}
}
},
"generate": {
"command": "pnpm tsx scripts/generate.ts"
}
}
}