We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f19b39e commit 5a8cdaeCopy full SHA for 5a8cdae
src/Console/InstallCommand.php
@@ -273,6 +273,8 @@ protected function installLivewireStack()
273
$this->runCommands(['pnpm install', 'pnpm run build']);
274
} elseif (file_exists(base_path('yarn.lock'))) {
275
$this->runCommands(['yarn install', 'yarn run build']);
276
+ } elseif (file_exists(base_path('bun.lockb'))) {
277
+ $this->runCommands(['bun install', 'bun run build']);
278
} else {
279
$this->runCommands(['npm install', 'npm run build']);
280
}
0 commit comments