Skip to content

Commit

Permalink
chore: remove format
Browse files Browse the repository at this point in the history
  • Loading branch information
atomiks committed May 14, 2024
1 parent f33eda9 commit eef9f29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/changeset-update-version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit eef9f29

Please sign in to comment.