Files
oxc-project__oxc/vite-task.json

32 lines
810 B
JSON

{
"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
}
}
}