Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/JAVA/Openclaw/scripts/lib/   (KI Agentensystem Version 22©)  Datei vom 26.3.2026 mit Größe 1 kB image not shown  

Quelle  generated-output-utils.mjs   Sprache: unbekannt

 
Spracherkennung für: .mjs vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

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}`);
}

[Dauer der Verarbeitung: 0.25 Sekunden, vorverarbeitet 2026-04-27]