We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a8cdae commit d51ec69Copy full SHA for d51ec69
src/Console/InstallCommand.php
@@ -479,6 +479,8 @@ protected function installInertiaStack()
479
$this->runCommands(['pnpm install', 'pnpm run build']);
480
} elseif (file_exists(base_path('yarn.lock'))) {
481
$this->runCommands(['yarn install', 'yarn run build']);
482
+ } elseif (file_exists(base_path('bun.lockb'))) {
483
+ $this->runCommands(['bun install', 'bun run build']);
484
} else {
485
$this->runCommands(['npm install', 'npm run build']);
486
}
0 commit comments