From 32f965766c67071dc1f51cb5328047214fc6bed5 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 16 Nov 2025 01:53:21 +0000 Subject: [PATCH] Prettier format pending files --- build-api.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-api.js b/build-api.js index 18dcef4f..6842ef8a 100644 --- a/build-api.js +++ b/build-api.js @@ -43,7 +43,7 @@ try { cwd: __dirname, stdio: "inherit", env: { ...process.env, SKIP_TSC: "true" }, - } + }, ); console.log("✓ API routes transpiled successfully"); } catch (error) { @@ -72,7 +72,7 @@ function fixImportsInDir(dir) { return match; } return `from "${importPath}.js"`; - } + }, ); fixedContent = fixedContent.replace( @@ -82,7 +82,7 @@ function fixImportsInDir(dir) { return match; } return `from '${importPath}.js'`; - } + }, ); if (fixedContent !== content) {