Files
openclaw-zero-token/scripts/lib/generated-output-utils.mjs
sjhu 571e14a236 feat: upgrade to upstream v2026.3.28
Major upgrade from e26988a38 to upstream v2026.3.28 (f9b107928).
Key changes:
- Upstream src/, ui/, extensions/ (89 bundled extensions)
- Zero-token web providers preserved in src/zero-token/
- AskOnce plugin restored and registered as CLI command
- Added missing packages: @anthropic-ai/vertex-sdk, @modelcontextprotocol/sdk
- Fixed tsconfig rootDir, skipLibCheck for plugin-sdk DTS build
- Added askonce to bundled plugin metadata and package.json exports
- Fixed AskOnce CLI command registration (missing commands metadata)
- Restored AskOnce adapter imports (correct 5-level relative paths)
- Removed stale migration artifacts from root directory
2026-03-30 17:58:12 +08:00

46 lines
1.2 KiB
JavaScript

import path from "node:path";
import { pathToFileURL } from "node:url";
import { writeTextFileIfChanged } from "../runtime-postbuild-shared.mjs";
import { readIfExists } from "./bundled-plugin-source-utils.mjs";
export function writeGeneratedOutput(params) {
const outputPath = path.resolve(params.repoRoot, params.outputPath);
const current = readIfExists(outputPath);
const changed = current !== params.next;
if (params.check) {
return {
changed,
wrote: false,
outputPath,
};
}
return {
changed,
wrote: writeTextFileIfChanged(outputPath, params.next),
outputPath,
};
}
export function reportGeneratedOutputCli(params) {
if (params.importMetaUrl !== pathToFileURL(process.argv[1] ?? "").href) {
return;
}
const check = process.argv.includes("--check");
const result = params.run({ check });
if (!result.changed) {
return;
}
const relativeOutputPath = path.relative(process.cwd(), result.outputPath);
if (check) {
console.error(`[${params.label}] stale generated output at ${relativeOutputPath}`);
process.exitCode = 1;
return;
}
console.log(`[${params.label}] wrote ${relativeOutputPath}`);
}