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 and fuelviews-app[bot] committed Nov 11, 2024
1 parent b0ce48e commit 1a8cabe
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to `app-init` will be documented in this file.

## v0.0.2 - 2024-11-11

### What's Changed

* Bump poseidon/wait-for-status-checks from 0.5.0 to 0.6.0 by @dependabot in https://github.com/fuelviews/app-init/pull/3
* Bump symfony/process from 6.4.12 to 6.4.14 in the composer group across 1 directory by @dependabot in https://github.com/fuelviews/app-init/pull/4
* Bump symfony/http-foundation from 6.4.12 to 6.4.14 in the composer group across 1 directory by @dependabot in https://github.com/fuelviews/app-init/pull/5
* Added calls to 'app-init:changelog' and 'app-init:git-dot-files'. by @thejmitchener in https://github.com/fuelviews/app-init/pull/6

### New Contributors

* @dependabot made their first contribution in https://github.com/fuelviews/app-init/pull/3

**Full Changelog**: https://github.com/fuelviews/app-init/commits/v0.0.2

## v0.0.1 - 2024-10-27

### What's Changed
Expand Down
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 1a8cabe

Please sign in to comment.