Skip to content

Commit

Permalink
Added calls to 'app-init:changelog' and 'app-init:git-dot-files' comm…
Browse files Browse the repository at this point in the history
…ands in the InstallCommand.php file to initialize changelog and git dot files respectively during the installation process. (#6)
  • Loading branch information
thejmitchener authored Nov 11, 2024
1 parent b0ce48e commit 2da1c52
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Commands/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2da1c52

Please sign in to comment.