From 2da1c52211f708f8d57cc22b05538cde9cb09e27 Mon Sep 17 00:00:00 2001 From: Joshua Mitchener <64335706+thejmitchener@users.noreply.github.com> Date: Mon, 11 Nov 2024 15:04:18 -0500 Subject: [PATCH] Added calls to 'app-init:changelog' and 'app-init:git-dot-files' commands in the InstallCommand.php file to initialize changelog and git dot files respectively during the installation process. (#6) --- src/Commands/InstallCommand.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Commands/InstallCommand.php b/src/Commands/InstallCommand.php index e36b0d8..60099ae 100644 --- a/src/Commands/InstallCommand.php +++ b/src/Commands/InstallCommand.php @@ -19,9 +19,11 @@ public function handle(): void // Check if the --force flag is passed $forceOption = $this->option('force') ? ['--force' => true] : []; + $this->call('app-init:changelog', $forceOption); $this->call('app-init:vite', $forceOption); $this->call('app-init:tailwind', $forceOption); $this->call('app-init:prettier', $forceOption); + $this->call('app-init:git-dot-files', $forceOption); $this->call('app-init:composer-packages', $forceOption); // Run the migrations after ensuring environment variables are loaded