products/Sources/formale Sprachen/C/Firefox/editor/libeditor/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 189 kB image not shown  

Impressum generate-plugin-sdk-api-baseline.ts

  Sprache: JAVA
 

#!/usr/bin/env node
import path from "node:path";
import { writePluginSdkApiBaselineStatefile } from "../src/plugin-sdk/api-baseline.ts";

const args = new Set(process.argv.slice(2));
const checkOnly = args.has("--check");
const writeMode = args.has("--write");

if (checkOnly === writeMode) {
  console.error("Use exactly one of --check or --write.");
  process.exit(1);
}

const repoRoot = process.cwd();

async function main(): Promise<void> {
  const result = await writePluginSdkApiBaselineStatefile({
    repoRoot,
    check: checkOnly,
  });

  if (checkOnly) {
    if (result.changed) {
      console.error(
        [
          "Plugin SDK API baseline drift detected.",
          `Hash mismatch: ${path.relative(repoRoot, result.hashPath)}`,
          "If this Plugin SDK surface change is intentional, run `pnpm plugin-sdk:api:gen` and commit the updated hash file.",
          "If not intentional, treat this as API drift and fix the plugin-sdk exports or metadata first.",
        ].join("\n"),
      );
      process.exit(1);
    }
    console.log(`OK ${path.relative(repoRoot, result.hashPath)}`);
    return;
  }
  console.log(
    [
      `Wrote ${path.relative(repoRoot, result.hashPath)}`,
      `Wrote ${path.relative(repoRoot, result.jsonPath)} (gitignored, local only)`,
      `Wrote ${path.relative(repoRoot, result.statefilePath)} (gitignored, local only)`,
    ].join("\n"),
  );
}

await main();

Messung V0.5 in Prozent
C=98 H=96 G=96

¤ Dauer der Verarbeitung: 0.0 Sekunden  (vorverarbeitet am  2026-06-10) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.