fix(FN-4493): complete Step 7 — stabilize verification gates

Fusion-Task-Id: FN-4493
Fusion-Task-Lineage: 966c7c55-fd51-4263-9d4e-87e9d06bfb6f
This commit is contained in:
Fusion
2026-05-14 12:24:02 -07:00
committed by gsxdsm
parent b31c944034
commit f8206d4b1c

View File

@@ -4,8 +4,9 @@ import { mkdtempSync, rmSync } from "node:fs";
import { tmpdir } from "node:os";
import { join, resolve } from "node:path";
import { execFileSync, spawnSync } from "node:child_process";
import { URL, fileURLToPath } from "node:url";
const root = resolve(new URL("../../", import.meta.url).pathname);
const root = resolve(fileURLToPath(new URL("../../", import.meta.url)));
const scriptPath = join(root, "scripts/replace-seeded-workflow-prompts.mjs");
const coreDistPath = join(root, "packages/core/dist/types.js");