forked from oxc-project/oxc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite-task.json
More file actions
31 lines (31 loc) · 810 Bytes
/
vite-task.json
File metadata and controls
31 lines (31 loc) · 810 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
{
"tasks": {
"ready": {
"command": "echo 'ready'",
"dependsOn": ["vp:fmt", "vp:lint", "vp:test"],
"cacheable": true
},
"vp:fmt": {
"command": "pnpm run fmt",
"cacheable": true
},
"vp:lint": {
"dependsOn": ["vp:build-oxlint"],
"command": "pnpm run lint",
"cacheable": true
},
"vp:build-oxlint": {
"command": "pnpm --filter oxlint-app build-js",
"cacheable": true
},
"vp:build-test": {
"command": "pnpm --workspace-concurrency=1 --filter \"./napi/*\" --filter \"./apps/*\" build-test",
"cacheable": true
},
"vp:test": {
"command": "pnpm --workspace-concurrency=1 --filter \"./napi/*\" --filter \"./apps/*\" test",
"dependsOn": ["vp:build-test"],
"cacheable": true
}
}
}