Skip to content

Commit 5a8cdae

Browse files
authored
[5.x] Add bun support (#1544)
1 parent f19b39e commit 5a8cdae

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Console/InstallCommand.php

+2
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,8 @@ protected function installLivewireStack()
273273
$this->runCommands(['pnpm install', 'pnpm run build']);
274274
} elseif (file_exists(base_path('yarn.lock'))) {
275275
$this->runCommands(['yarn install', 'yarn run build']);
276+
} elseif (file_exists(base_path('bun.lockb'))) {
277+
$this->runCommands(['bun install', 'bun run build']);
276278
} else {
277279
$this->runCommands(['npm install', 'npm run build']);
278280
}

0 commit comments

Comments
 (0)