diff --git a/app/Commands/RunCommand.php b/app/Commands/RunCommand.php index 8bb1721..7d472e0 100644 --- a/app/Commands/RunCommand.php +++ b/app/Commands/RunCommand.php @@ -138,7 +138,6 @@ private function scriptCommand(array $script, bool $concurrently = false): strin $appName = config('app.name'); return $command - ->when($command->startsWith($appName), fn (Stringable $s) => $s->replace($appName, base_path($appName))) ->when($concurrently, fn (Stringable $s) => $s->wrap('"')) ->toString(); } diff --git a/builds/devpulse b/builds/devpulse index 5854124..9873d14 100755 Binary files a/builds/devpulse and b/builds/devpulse differ diff --git a/composer.json b/composer.json index b22e37f..a5e6530 100644 --- a/composer.json +++ b/composer.json @@ -1,64 +1,64 @@ { - "name": "softpulze/devpulse-cli", - "description": "DevPulse CLI - An open-source command-line tool that simplifies and unifies developer workflows.", - "keywords": [ - "devpulse", - "cli", - "opensource", - "productivity", - "tool" - ], - "homepage": "https://github.com/softpulze/devpulse-cli", - "type": "project", - "license": "MIT", - "support": { - "issues": "https://github.com/softpulze/devpulse-cli/issues", - "source": "https://github.com/softpulze/devpulse-cli" - }, - "authors": [ - { - "name": "Ashok Barua", - "email": "ashokbaruaakas@gmail.com" - } - ], - "require": { - "php": "^8.2.0" - }, - "require-dev": { - "larastan/larastan": "^3.0", - "laravel-zero/framework": "^12.0", - "laravel/pint": "^1.18", - "mockery/mockery": "^1.6.12", - "pestphp/pest": "^3.5.1", - "pestphp/pest-plugin-type-coverage": "^3.2", - "rector/rector": "^2.0" - }, - "autoload": { - "files": [ - "bootstrap/helpers.php" + "name": "softpulze/devpulse-cli", + "description": "DevPulse CLI - An open-source command-line tool that simplifies and unifies developer workflows.", + "keywords": [ + "devpulse", + "cli", + "opensource", + "productivity", + "tool" ], - "psr-4": { - "App\\": "app/", - "Database\\Factories\\": "database/factories/", - "Database\\Seeders\\": "database/seeders/" - } - }, - "autoload-dev": { - "psr-4": { - "Tests\\": "tests/" - } - }, - "config": { - "preferred-install": "dist", - "sort-packages": true, - "optimize-autoloader": true, - "allow-plugins": { - "pestphp/pest-plugin": true - } - }, - "minimum-stability": "stable", - "prefer-stable": true, - "bin": [ - "builds/devpulse" - ] + "homepage": "https://github.com/softpulze/devpulse-cli", + "type": "project", + "license": "MIT", + "support": { + "issues": "https://github.com/softpulze/devpulse-cli/issues", + "source": "https://github.com/softpulze/devpulse-cli" + }, + "authors": [ + { + "name": "Ashok Barua", + "email": "ashokbaruaakas@gmail.com" + } + ], + "require": { + "php": "^8.2.0" + }, + "require-dev": { + "larastan/larastan": "^3.0", + "laravel-zero/framework": "^12.0", + "laravel/pint": "^1.18", + "mockery/mockery": "^1.6.12", + "pestphp/pest": "^3.5.1", + "pestphp/pest-plugin-type-coverage": "^3.2", + "rector/rector": "^2.0" + }, + "autoload": { + "files": [ + "bootstrap/helpers.php" + ], + "psr-4": { + "App\\": "app/", + "Database\\Factories\\": "database/factories/", + "Database\\Seeders\\": "database/seeders/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "config": { + "preferred-install": "dist", + "sort-packages": true, + "optimize-autoloader": true, + "allow-plugins": { + "pestphp/pest-plugin": true + } + }, + "minimum-stability": "stable", + "prefer-stable": true, + "bin": [ + "builds/devpulse" + ] }