Skip to content

Commit 0668d74

Browse files
authored
update bun lockfile (#462)
1 parent e16b516 commit 0668d74

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

src/Console/InstallCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ protected static function flushNodeModules()
297297

298298
$files->delete(base_path('pnpm-lock.yaml'));
299299
$files->delete(base_path('yarn.lock'));
300+
$files->delete(base_path('bun.lock'));
300301
$files->delete(base_path('bun.lockb'));
301302
$files->delete(base_path('deno.lock'));
302303
$files->delete(base_path('package-lock.json'));

src/Console/InstallsBladeStack.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected function installBladeStack()
7676
$this->runCommands(['pnpm install', 'pnpm run build']);
7777
} elseif (file_exists(base_path('yarn.lock'))) {
7878
$this->runCommands(['yarn install', 'yarn run build']);
79-
} elseif (file_exists(base_path('bun.lockb'))) {
79+
} elseif (file_exists(base_path('bun.lock')) || file_exists(base_path('bun.lockb'))) {
8080
$this->runCommands(['bun install', 'bun run build']);
8181
} elseif (file_exists(base_path('deno.lock'))) {
8282
$this->runCommands(['deno install', 'deno task build']);

src/Console/InstallsInertiaStacks.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ protected function installInertiaVueStack()
181181
$this->runCommands(['pnpm install', 'pnpm run build']);
182182
} elseif (file_exists(base_path('yarn.lock'))) {
183183
$this->runCommands(['yarn install', 'yarn run build']);
184-
} elseif (file_exists(base_path('bun.lockb'))) {
184+
} elseif (file_exists(base_path('bun.lock')) || file_exists(base_path('bun.lockb'))) {
185185
$this->runCommands(['bun install', 'bun run build']);
186186
} else {
187187
$this->runCommands(['npm install', 'npm run build']);
@@ -401,7 +401,7 @@ protected function installInertiaReactStack()
401401
$this->runCommands(['pnpm install', 'pnpm run build']);
402402
} elseif (file_exists(base_path('yarn.lock'))) {
403403
$this->runCommands(['yarn install', 'yarn run build']);
404-
} elseif (file_exists(base_path('bun.lockb'))) {
404+
} elseif (file_exists(base_path('bun.lockb')) || file_exists(base_path('bun.lock'))) {
405405
$this->runCommands(['bun install', 'bun run build']);
406406
} elseif (file_exists(base_path('deno.lock'))) {
407407
$this->runCommands(['deno install', 'deno task build']);

src/Console/InstallsLivewireStack.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ protected function installLivewireStack($functional = false)
104104
$this->runCommands(['pnpm install', 'pnpm run build']);
105105
} elseif (file_exists(base_path('yarn.lock'))) {
106106
$this->runCommands(['yarn install', 'yarn run build']);
107-
} elseif (file_exists(base_path('bun.lockb'))) {
107+
} elseif (file_exists(base_path('bun.lock')) || file_exists(base_path('bun.lockb'))) {
108108
$this->runCommands(['bun install', 'bun run build']);
109109
} elseif (file_exists(base_path('deno.lock'))) {
110110
$this->runCommands(['deno install', 'deno task build']);

0 commit comments

Comments
 (0)