Skip to content

Commit

Permalink
Added bun & deno support to flushNodeModules() (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodechef authored Sep 5, 2024
1 parent a2f49a3 commit 2d7ffd7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,8 @@ protected static function flushNodeModules()
$files->deleteDirectory(base_path('node_modules'));

$files->delete(base_path('yarn.lock'));
$files->delete(base_path('bun.lockb'));
$files->delete(base_path('deno.lock'));
$files->delete(base_path('package-lock.json'));
});
}
Expand Down

0 comments on commit 2d7ffd7

Please sign in to comment.