Skip to content

Commit

Permalink
Update package tags
Browse files Browse the repository at this point in the history
  • Loading branch information
xHeaven committed May 15, 2024
1 parent d4bd031 commit 883a1ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Commands/LaravelWebTinkerInstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public function handle()
{
$this->comment('Publishing Laravel Web Tinker Assets...');

$this->call('vendor:publish', ['--tag' => 'config']);
$this->call('vendor:publish', ['--tag' => 'views']);
$this->call('vendor:publish', ['--tag' => 'laravel-web-tinker-config']);
$this->call('vendor:publish', ['--tag' => 'laravel-web-tinker-views']);
$this->call('vendor:publish', ['--tag' => 'laravel-web-tinker-assets']);

$this->info('Laravel Web Tinker installed successfully.');
Expand Down
4 changes: 2 additions & 2 deletions src/LaravelWebTinkerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ public function boot()
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__ . '/../config/web-tinker.php' => config_path('web-tinker.php'),
], 'config');
], 'laravel-web-tinker-config');

$this->publishes([
__DIR__ . '/../resources/views' => base_path('resources/views/vendor/web-tinker'),
], 'views');
], 'laravel-web-tinker-views');

$this->publishes([
__DIR__ . '/../dist' => public_path('vendor/web-tinker'),
Expand Down

0 comments on commit 883a1ae

Please sign in to comment.