File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff 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 ' ));
Original file line number Diff line number Diff 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 ' ]);
Original file line number Diff line number Diff 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 ' ]);
Original file line number Diff line number Diff 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 ' ]);
You can’t perform that action at this time.
0 commit comments