From 29ae8390f796f267be6b80f98beda629efe1304d Mon Sep 17 00:00:00 2001 From: Jimmy Hoenderdaal Date: Fri, 6 Sep 2024 12:48:23 +0200 Subject: [PATCH] add prettierrc to install --- src/Commands/InstallCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Commands/InstallCommand.php b/src/Commands/InstallCommand.php index b6e8ea50c..6a48f305c 100644 --- a/src/Commands/InstallCommand.php +++ b/src/Commands/InstallCommand.php @@ -17,6 +17,7 @@ public function handle() copy(__DIR__ . '/../../tailwind.config.js', base_path('tailwind.config.js')); copy(__DIR__ . '/../../vite.config.js', base_path('vite.config.js')); copy(__DIR__ . '/../../yarn.lock', base_path('yarn.lock')); + copy(__DIR__ . '/../../.prettierrc.js', base_path('.prettierrc.js')); $this->info('Done 🚀'); }