Skip to content
This repository was archived by the owner on Aug 10, 2025. It is now read-only.

Commit 883a1ae

Browse files
committed
Update package tags
1 parent d4bd031 commit 883a1ae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Commands/LaravelWebTinkerInstallCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ public function handle()
1414
{
1515
$this->comment('Publishing Laravel Web Tinker Assets...');
1616

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

2121
$this->info('Laravel Web Tinker installed successfully.');

src/LaravelWebTinkerServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ public function boot()
1616
if ($this->app->runningInConsole()) {
1717
$this->publishes([
1818
__DIR__ . '/../config/web-tinker.php' => config_path('web-tinker.php'),
19-
], 'config');
19+
], 'laravel-web-tinker-config');
2020

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

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

0 commit comments

Comments
 (0)