We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c0456f commit 5e615c0Copy full SHA for 5e615c0
src/ToolsServiceProvider.php
@@ -38,6 +38,22 @@ public function configurePackage(Package $package): void
38
->publishMigrations()
39
->askToRunMigrations()
40
->askToStarRepoOnGitHub('backstage/tools');
41
+
42
+ $command->startWith(function () use ($command) {
43
+ $publishables = [
44
+ 'horizon-config',
45
+ 'pulse-migrations',
46
+ 'pulse-config',
47
+ 'telescope-migrations',
48
+ ];
49
50
+ foreach ($publishables as $publishable) {
51
+ $command->call('vendor:publish', [
52
+ '--tag' => $publishable,
53
+ '--force' => true,
54
+ ]);
55
+ }
56
+ });
57
});
58
59
$configFileName = $package->shortName();
0 commit comments