Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed May 20, 2021
1 parent 9f487fb commit 322d60b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Release Notes

## [Unreleased](https://github.com/laravel/breeze/compare/v1.1.8...1.x)
## [Unreleased](https://github.com/laravel/breeze/compare/v1.2.0...1.x)


## [v1.2.0 (2021-05-20)](https://github.com/laravel/breeze/compare/v1.1.8...v1.2.0)

### Added
- React installation option ([#73](https://github.com/laravel/breeze/pull/73))


## [v1.1.8 (2021-05-18)](https://github.com/laravel/breeze/compare/v1.1.7...v1.1.8)
Expand Down
5 changes: 3 additions & 2 deletions src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ class InstallCommand extends Command
*
* @var string
*/
protected $signature = 'breeze:install {stack=blade : The development stack that should be installed}
protected $signature = 'breeze:install {stack=blade : The development stack that should be installed (blade,react,vue)}
{--inertia : Indicate that the Vue Inertia stack should be installed (Deprecated)}
{--composer=global : Absolute path to the Composer binary which should be used to install packages}';

/**
Expand All @@ -31,7 +32,7 @@ class InstallCommand extends Command
*/
public function handle()
{
if ($this->argument('stack') === 'vue') {
if ($this->option('inertia') || $this->argument('stack') === 'vue') {
return $this->installInertiaVueStack();
}

Expand Down

0 comments on commit 322d60b

Please sign in to comment.