From 62cc147a54c8aceb976d3e266270685127d9e22b Mon Sep 17 00:00:00 2001 From: Jess Archer Date: Wed, 10 Aug 2022 18:05:40 +1000 Subject: [PATCH] Remove the npm install and build steps These will be handled by the Jetstream installer now. --- src/NewCommand.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/NewCommand.php b/src/NewCommand.php index 67916b08..308ffb9e 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -177,7 +177,6 @@ protected function installJetstream(string $directory, string $stack, bool $team $commands = array_filter([ $this->findComposer().' require laravel/jetstream', trim(sprintf(PHP_BINARY.' artisan jetstream:install %s %s', $stack, $teams ? '--teams' : '')), - 'npm install && npm run build', PHP_BINARY.' artisan storage:link', ]);