From d121119706c97d4cb75a9cf764cb321667acf63b Mon Sep 17 00:00:00 2001 From: Miguel Nogueira Date: Thu, 9 Jul 2020 05:37:11 +0100 Subject: [PATCH] Reverse npm silence --- app/Console/Commands/Install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/Install.php b/app/Console/Commands/Install.php index 9c1f923..53792eb 100644 --- a/app/Console/Commands/Install.php +++ b/app/Console/Commands/Install.php @@ -56,8 +56,8 @@ class Install extends Command // Command stack - $npm = new Process(['/usr/bin/env npm install', '--silent'], $basePath); - $npmBuild = new Process(['/usr/bin/env npm run dev', '--silent'], $basePath); + $npm = new Process(['/usr/bin/env npm install'], $basePath); + $npmBuild = new Process(['/usr/bin/env npm run dev'], $basePath); $this->info('>> Installing and preparing dependencies. This may take a while, depending on your computer.');