From 76ea1c1cee2e37f46cbcc35ea55a9fb7aa1a0f36 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Mon, 18 Nov 2024 10:06:29 +0800 Subject: [PATCH] wip Signed-off-by: Mior Muhammad Zaki --- src/NewCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NewCommand.php b/src/NewCommand.php index 84f9a81..efc99ce 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -358,7 +358,7 @@ protected function configureComposerScript(string $directory): void { $this->composer->modify(function (array $content) { if (windows_os()) { - $content['scripts']['dev'] = 'npx concurrently -c "#93c5fd,#c4b5fd,#fdba74" "php artisan serve" "php artisan queue:listen --tries=1" "npm run dev" --names=server,queue,vite'; + $content['scripts']['dev'] = "npx concurrently -c \"#93c5fd,#c4b5fd,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"npm run dev\" --names={{ 'server,queue,vite' }}"; } return $content;