mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-08 21:09:23 +08:00
39 lines
1.4 KiB
TypeScript
39 lines
1.4 KiB
TypeScript
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const rootDir = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");
|
|
const distDir = path.join(rootDir, "dist");
|
|
const cliDir = path.join(distDir, "cli");
|
|
|
|
const findCandidates = () =>
|
|
fs.readdirSync(distDir).filter((entry) => {
|
|
if (!entry.startsWith("daemon-cli-")) {
|
|
return false;
|
|
}
|
|
// tsdown can emit either .js or .mjs depending on bundler settings/runtime.
|
|
return entry.endsWith(".js") || entry.endsWith(".mjs");
|
|
});
|
|
|
|
// In rare cases, build output can land slightly after this script starts (depending on FS timing).
|
|
// Retry briefly to avoid flaky builds.
|
|
let candidates = findCandidates();
|
|
for (let i = 0; i < 10 && candidates.length === 0; i++) {
|
|
await new Promise((resolve) => setTimeout(resolve, 50));
|
|
candidates = findCandidates();
|
|
}
|
|
|
|
if (candidates.length === 0) {
|
|
throw new Error("No daemon-cli bundle found in dist; cannot write legacy CLI shim.");
|
|
}
|
|
|
|
const target = candidates.toSorted()[0];
|
|
const relPath = `../${target}`;
|
|
|
|
const contents =
|
|
"// Legacy shim for pre-tsdown update-cli imports.\n" +
|
|
`export { registerDaemonCli, runDaemonInstall, runDaemonRestart, runDaemonStart, runDaemonStatus, runDaemonStop, runDaemonUninstall } from "${relPath}";\n`;
|
|
|
|
fs.mkdirSync(cliDir, { recursive: true });
|
|
fs.writeFileSync(path.join(cliDir, "daemon-cli.js"), contents);
|