-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtask.config.json
More file actions
35 lines (35 loc) · 614 Bytes
/
task.config.json
File metadata and controls
35 lines (35 loc) · 614 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
{
"$schema": "https://getbizi.dev/schemas/task.config.json",
"tasks": {
"lint": {
"command": "pnpm lint"
},
"format": {
"command": "pnpm format"
},
"check": {
"command": "pnpm check"
},
"test": {
"command": "pnpm test"
},
"build": {
"command": "pnpm build"
},
"build:local": {
"command": "pnpm build:local"
},
"dev": {
"tasks": {
"convex": {
"color": "blue",
"command": "pnpm dotenvx run -f .env.local -- pnpm dev:convex"
},
"app": {
"color": "green",
"command": "pnpm dotenvx run -f .env.local -- pnpm dev:vite"
}
}
}
}
}