From eef9f299dc10fd7bcf8e86251f4f48ef9c03d135 Mon Sep 17 00:00:00 2001 From: atomiks Date: Tue, 14 May 2024 13:57:30 +1000 Subject: [PATCH] chore: remove format --- scripts/changeset-update-version.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/changeset-update-version.ts b/scripts/changeset-update-version.ts index 07b7f2a..e89a142 100644 --- a/scripts/changeset-update-version.ts +++ b/scripts/changeset-update-version.ts @@ -17,12 +17,12 @@ run().catch((error) => { async function run() { const versionCommand = bun.$`pnpm exec changeset version`.text(); const installCommand = bun.$`pnpm install --lockfile-only`.text(); - const formatCommand = bun.$`biome format . --write`.text(); + // const formatCommand = bun.$`biome format . --write`.text(); const results = await Promise.all([ versionCommand, installCommand, - formatCommand, + // formatCommand, ]); console.info(JSON.stringify(results, undefined, 2));