Skip to content

Commit a170255

Browse files
fix(script): biome format wrap (#4541)
1 parent 13666b1 commit a170255

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

scripts/sync-tool-catalog.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,11 @@ async function main() {
210210
lines.push('')
211211

212212
const rendered = formatGeneratedSource(lines.join('\n'), OUTPUT_PATH, ROOT)
213-
const runtimeSchemaRendered = renderRuntimeSchemaModule(catalog)
213+
const runtimeSchemaRendered = formatGeneratedSource(
214+
renderRuntimeSchemaModule(catalog),
215+
RUNTIME_SCHEMA_OUTPUT_PATH,
216+
ROOT
217+
)
214218

215219
if (checkOnly) {
216220
const existing = await readFile(OUTPUT_PATH, 'utf8').catch(() => null)

0 commit comments

Comments
 (0)