We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1106992 commit 557c89eCopy full SHA for 557c89e
src/Commands/InstallCommand.php
@@ -4,6 +4,7 @@
4
5
use Illuminate\Console\Command;
6
use Illuminate\Support\Arr;
7
+use Illuminate\Support\Facades\Artisan;
8
use Illuminate\Support\Facades\File;
9
use RuntimeException;
10
use Symfony\Component\Process\Process;
@@ -112,7 +113,7 @@ private function installJsDependenciesWithImportmaps(): void
112
113
{
114
$this->components->info('Installing JS dependencies (Importmaps).');
115
- $this->callSilent('php artisan importmap:pin '.implode(' ', array_keys($this->jsDependencies())));
116
+ Artisan::call('importmap:pin '.implode(' ', array_keys($this->jsDependencies())));
117
}
118
119
private function ensureTrixLibIsImported(): void
0 commit comments