10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
import { spawnSync } from "node:child_process";
|
|
|
|
const result = spawnSync("pnpm", ["--filter", "@aiquant/shared", "test"], {
|
|
cwd: process.cwd(),
|
|
stdio: "inherit",
|
|
shell: true
|
|
});
|
|
|
|
process.exit(result.status ?? 1);
|