From 06a076fea040fcbad0b49eb5a6ad7d5732378a7e Mon Sep 17 00:00:00 2001 From: Claudio Ludovico Date: Wed, 13 Nov 2019 16:17:34 +0000 Subject: [PATCH] Add new tasks I've added `artisan:horizon:assets` and `artisan:telescope:publish` because if you use this package, which is gorgeous by the way, in an environment that has auto-deploy with continuous integration you will end up having the `public/vendor` directory empty thus breaking those two services **NOTE** neither of the commands force the overwrite so this is a safe execution. --- src/task/artisan.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/task/artisan.php b/src/task/artisan.php index b8d5976..52cfff1 100644 --- a/src/task/artisan.php +++ b/src/task/artisan.php @@ -53,9 +53,15 @@ desc('Execute artisan storage:link'); task('artisan:storage:link', artisan('storage:link', ['min' => 5.3])); +desc('Execute artisan horizon:assets'); +task('artisan:horizon:assets', artisan('horizon:assets')); + desc('Execute artisan horizon:terminate'); task('artisan:horizon:terminate', artisan('horizon:terminate')); +desc('Execute artisan telescope:publish'); +task('artisan:telescope:publish', artisan('telescope:publish')); + desc('Execute artisan telescope:clear'); task('artisan:telescope:clear', artisan('telescope:clear'));