Closed marcorivm closed 1 year ago
The migration file is created very quickly but the artisan make:migration command takes a while to complete since it will rul $this->composer->dumpAutoloads(); at the end, this makes the command seem really slow while in reality we could be editing the file right away. https://github.com/TheColorRed/vscode-laravel-artisan/blob/fcaeee1baf6b966fc4b388a90baa1a237600acb2/src/commands/make/Migration.ts#L35
$this->composer->dumpAutoloads();
Is there a way to read cmd output as it's being sent by laravel and act based on that?
Marking issue as stale since there has'nt been any activity recently.
The migration file is created very quickly but the artisan make:migration command takes a while to complete since it will rul
$this->composer->dumpAutoloads();
at the end, this makes the command seem really slow while in reality we could be editing the file right away. https://github.com/TheColorRed/vscode-laravel-artisan/blob/fcaeee1baf6b966fc4b388a90baa1a237600acb2/src/commands/make/Migration.ts#L35Is there a way to read cmd output as it's being sent by laravel and act based on that?