diff --git a/bin/release.sh b/bin/release.sh index 0502d4a6..f03db763 100755 --- a/bin/release.sh +++ b/bin/release.sh @@ -57,7 +57,8 @@ for REMOTE in flasher flasher-laravel flasher-symfony flasher-livewire \ flasher-notyf flasher-notyf-laravel flasher-notyf-symfony \ flasher-sweet-alert flasher-sweet-alert-laravel flasher-sweet-alert-symfony \ flasher-pnotify flasher-pnotify-laravel flasher-pnotify-symfony \ - flasher-noty flasher-noty-laravel flasher-noty-symfony + flasher-noty flasher-noty-laravel flasher-noty-symfony \ + flasher-cli flasher-cli-laravel flasher-cli-symfony do echo "" echo "" diff --git a/bin/split.sh b/bin/split.sh index ab2862cb..5a87f52e 100755 --- a/bin/split.sh +++ b/bin/split.sh @@ -44,6 +44,10 @@ remote noty git@github.com:php-flasher/flasher-noty.git remote noty-laravel git@github.com:php-flasher/flasher-noty-laravel.git remote noty-symfony git@github.com:php-flasher/flasher-noty-symfony.git +remote cli git@github.com:php-flasher/flasher-cli.git +remote cli-laravel git@github.com:php-flasher/flasher-cli-laravel.git +remote cli-symfony git@github.com:php-flasher/flasher-cli-symfony.git + split 'src/Prime' flasher split 'src/Laravel' laravel split 'src/Symfony' symfony @@ -68,3 +72,7 @@ split 'src/Pnotify/Symfony' pnotify-symfony split 'src/Noty/Prime' noty split 'src/Noty/Laravel' noty-laravel split 'src/Noty/Symfony' noty-symfony + +split 'src/Cli/Prime' cli +split 'src/Cli/Laravel' cli-laravel +split 'src/Cli/Symfony' cli-symfony diff --git a/bin/update-github.sh b/bin/update-github.sh deleted file mode 100644 index 7eef45b1..00000000 --- a/bin/update-github.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env bash - -set -e -set -x - -function remote() -{ - git remote set-url "$1" "$2" || true -} - -remote flasher git@github.com:php-flasher/flasher.git -remote laravel git@github.com:php-flasher/flasher-laravel.git -remote symfony git@github.com:php-flasher/flasher-symfony.git -remote livewire git@github.com:php-flasher/flasher-livewire.git - -remote toastr git@github.com:php-flasher/flasher-toastr.git -remote toastr-laravel git@github.com:php-flasher/flasher-toastr-laravel.git -remote toastr-symfony git@github.com:php-flasher/flasher-toastr-symfony.git - -remote notyf git@github.com:php-flasher/flasher-notyf.git -remote notyf-laravel git@github.com:php-flasher/flasher-notyf-laravel.git -remote notyf-symfony git@github.com:php-flasher/flasher-notyf-symfony.git - -remote sweet-alert git@github.com:php-flasher/flasher-sweet-alert.git -remote sweet-alert-laravel git@github.com:php-flasher/flasher-sweet-alert-laravel.git -remote sweet-alert-symfony git@github.com:php-flasher/flasher-sweet-alert-symfony.git - -remote pnotify git@github.com:php-flasher/flasher-pnotify.git -remote pnotify-laravel git@github.com:php-flasher/flasher-pnotify-laravel.git -remote pnotify-symfony git@github.com:php-flasher/flasher-pnotify-symfony.git - -remote noty git@github.com:php-flasher/flasher-noty.git -remote noty-laravel git@github.com:php-flasher/flasher-noty-laravel.git -remote noty-symfony git@github.com:php-flasher/flasher-noty-symfony.git -