From 1612b80a3c736de4576d8221a9b657966e1f6b35 Mon Sep 17 00:00:00 2001 From: Vikhyath Mondreti Date: Sat, 9 May 2026 16:13:39 -0700 Subject: [PATCH] fix(script): biome format wrap --- scripts/sync-tool-catalog.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/sync-tool-catalog.ts b/scripts/sync-tool-catalog.ts index 5de6c62603..285743741a 100644 --- a/scripts/sync-tool-catalog.ts +++ b/scripts/sync-tool-catalog.ts @@ -210,7 +210,11 @@ async function main() { lines.push('') const rendered = formatGeneratedSource(lines.join('\n'), OUTPUT_PATH, ROOT) - const runtimeSchemaRendered = renderRuntimeSchemaModule(catalog) + const runtimeSchemaRendered = formatGeneratedSource( + renderRuntimeSchemaModule(catalog), + RUNTIME_SCHEMA_OUTPUT_PATH, + ROOT + ) if (checkOnly) { const existing = await readFile(OUTPUT_PATH, 'utf8').catch(() => null)