vscode-laravel-artisan
vscode-laravel-artisan copied to clipboard
When running make:migrate showing the migration takes a while
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
Is there a way to read cmd output as it's being sent by laravel and act based on that?