chore: initialize workspace structure

This commit is contained in:
2026-03-28 16:30:43 +08:00
commit 50f41a6e22
15 changed files with 103 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
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);