| 123456789101112131415 |
- #!/usr/bin/env node
- import { execFileSync } from "node:child_process";
- import { dirname, resolve } from "node:path";
- import { fileURLToPath } from "node:url";
- const root = resolve(dirname(fileURLToPath(import.meta.url)), "..");
- const run = (file, args = []) => execFileSync(process.execPath, [resolve(root, file), ...args], {
- cwd: root,
- stdio: "inherit",
- });
- run("install.js", ["--check"]);
- run("scripts/smoke-package.mjs");
- run("scripts/smoke-mcp.mjs");
- console.log(JSON.stringify({ status: "ok", acceptance: "fmode-image-set" }, null, 2));
|