mirror of
https://github.com/oxc-project/oxc.git
synced 2026-09-14 19:36:11 +08:00
32 lines
810 B
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
|
|
}
|
|
}
|
|
}
|