Skip to content

Commit f21c4e7

Browse files
Merge pull request #10 from softpulselab/fix
Base Fix to Publish First beta/test release
2 parents 3a2d002 + 16f7f3d commit f21c4e7

6 files changed

Lines changed: 1243 additions & 982 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
use function Laravel\Prompts\note;
1010

11-
final class RunScriptCommmand
11+
final class RunScriptCommand
1212
{
1313
public function handle(string $command, int $timeout = 0): void
1414
{

app/Commands/RunCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace App\Commands;
66

7-
use App\Actions\RunScriptCommmand;
7+
use App\Actions\RunScriptCommand;
88
use App\Support\Configuration;
99
use Illuminate\Console\Scheduling\Schedule;
1010
use Illuminate\Support\Str;
@@ -36,7 +36,7 @@ final class RunCommand extends Command
3636
/**
3737
* Execute the console command.
3838
*/
39-
public function handle(Terminal $terminal, Configuration $configuration, RunScriptCommmand $runCommandAction): void
39+
public function handle(Terminal $terminal, Configuration $configuration, RunScriptCommand $runCommandAction): void
4040
{
4141
/** @var string[] $names */
4242
$names = str($this->argument('names'))->explode(',')->toArray();

app/Support/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,6 @@ public function scripts(string ...$keys): array
9797
/** @var ScriptShape[] $scripts */
9898
$scripts = Arr::where($this->scripts, fn (array $script): bool => in_array($script['name'], $keys));
9999

100-
return $scripts;
100+
return array_reverse($scripts);
101101
}
102102
}

builds/devpulse

-564 KB
Binary file not shown.

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "laravel-zero/laravel-zero",
3-
"description": "The Laravel Zero Framework.",
2+
"name": "softpulselab/devpulse-cli",
3+
"description": "DevPulse CLI - An open-source command-line tool that simplifies and unifies developer workflows.",
44
"keywords": [
5-
"framework",
6-
"laravel",
7-
"laravel zero",
8-
"console",
9-
"cli"
5+
"devpulse",
6+
"cli",
7+
"opensource",
8+
"productivity",
9+
"tool"
1010
],
1111
"homepage": "https://laravel-zero.com",
1212
"type": "project",
@@ -26,7 +26,7 @@
2626
},
2727
"require-dev": {
2828
"larastan/larastan": "^3.0",
29-
"laravel-zero/framework": "^11.0.2",
29+
"laravel-zero/framework": "^12.0",
3030
"laravel/pint": "^1.18",
3131
"mockery/mockery": "^1.6.12",
3232
"pestphp/pest": "^3.5.1",

0 commit comments

Comments
 (0)