62425b2f58
Internal SmartGift build of a Claude Code monitoring dashboard. Lanes: a durable unit of parallel agent work, one per working directory, tracked across session restarts. Managed lanes are git worktrees the dashboard provisions and can reset or remove behind a three-check destroy guard and a counted preflight; adopted lanes are directories you already own and are never destroyable. Pipelines: a lane moves through pipeline stages. A stage the agent declares with evidence renders green; a stage inferred from the tool-event stream renders dashed amber and never counts as done. Detection is forward-only within a 30-minute window, and never writes the declared stage. Workspace: one page at /run with a lane grid, the selected lane's pipeline, and a full Claude console behind a disclosure.
47 lines
1.9 KiB
JavaScript
47 lines
1.9 KiB
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* @file postinstall.js
|
|
* @description Root `postinstall` hook: after a bare `npm install` at the repo
|
|
* root, install the React client's dependencies too, so a single root install
|
|
* yields a buildable/runnable tree (the client's fonts and build deps live in
|
|
* `client/package.json`). The step is a safe no-op when the `client/` workspace
|
|
* is absent — production/Docker stages that copy only the root manifest, the
|
|
* MCP image's `file:..` link, and the published tarball all install without a
|
|
* client checkout, and must not fail here. Skipped entirely under
|
|
* `npm install --ignore-scripts` (run `cd client && npm install` manually then).
|
|
* @author Nguyễn Ngọc Trí Vĩ <vinnt@smartgift.vn>
|
|
*/
|
|
|
|
const { spawnSync } = require("child_process");
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
|
|
const clientDir = path.join(__dirname, "..", "client");
|
|
const clientManifest = path.join(clientDir, "package.json");
|
|
|
|
// No client checkout in this context (Docker server/MCP stages, packed tarball,
|
|
// server-only installs). Nothing to do — succeed quietly so the parent install
|
|
// is not broken.
|
|
if (!fs.existsSync(clientManifest)) {
|
|
console.log("[postinstall] client/ not present — skipping client dependency install.");
|
|
process.exit(0);
|
|
}
|
|
|
|
console.log("[postinstall] installing client dependencies (client/)...");
|
|
|
|
// `shell: true` is required on Windows so npm's `.cmd` shim resolves (Node
|
|
// rejects spawning `.cmd`/`.bat` directly since 18.20 / CVE-2024-27980); the
|
|
// fixed arg list has no shell-significant characters, so this stays safe.
|
|
const result = spawnSync("npm", ["install"], {
|
|
cwd: clientDir,
|
|
stdio: "inherit",
|
|
shell: true,
|
|
});
|
|
|
|
if (result.error) {
|
|
console.error("[postinstall] failed to launch npm for the client install:", result.error.message);
|
|
process.exit(1);
|
|
}
|
|
|
|
process.exit(result.status === null ? 1 : result.status);
|