From f6e8e7e93abaf87dd20e6bc367c4345a04c16b04 Mon Sep 17 00:00:00 2001 From: Mojo <291533947+mojobeeping@users.noreply.github.com> Date: Mon, 8 Jun 2026 06:43:27 +0200 Subject: [PATCH] Avoid running bun install during scaffolding --- src/create.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/create.ts b/src/create.ts index fbff684..c8e4d8d 100644 --- a/src/create.ts +++ b/src/create.ts @@ -420,10 +420,6 @@ docs execSync('git init'); } - // Install dependencies - spinner.text = 'Installing dependencies...'; - execSync('bun install', { stdio: 'inherit' }); - spinner.succeed(`Successfully created ${projectName}!`); console.log('\nNext steps:'); console.log(` cd ${projectName}`); @@ -436,4 +432,4 @@ docs spinner.fail('Failed to create project'); throw error; } -} \ No newline at end of file +}