From c8ef2b248f9dd1f3e99d4568ac3ba686e2c9900a Mon Sep 17 00:00:00 2001 From: Alois Date: Tue, 10 Mar 2026 21:07:06 +0100 Subject: [PATCH] Removed formatting from build script --- scripts/build-packages.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/build-packages.ts b/scripts/build-packages.ts index c9ba37d..0f4991a 100644 --- a/scripts/build-packages.ts +++ b/scripts/build-packages.ts @@ -34,10 +34,9 @@ for (const fullPath of packageDirs) { const entry = fullPath.replace(packagesDir + "/", ""); console.log(`Building ${entry}...`); try { - execSync("bun run format", { cwd: fullPath, stdio: "inherit" }); execSync("bun run build", { cwd: fullPath, stdio: "inherit" }); console.log(`${entry} built successfully.`); - } catch (error) { + } catch { console.error(`Failed to build ${entry}.`); process.exit(1); }