mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
feat: yarn output during installation is colored
This commit is contained in:
parent
b7ffe9374c
commit
0024b88f3f
1 changed files with 3 additions and 3 deletions
|
@ -242,11 +242,11 @@ class InitCommand extends Command
|
|||
// - The second for the root folder, to build Koel's front-end assets with Mix.
|
||||
chdir('./resources/assets');
|
||||
$this->info('├── Installing Node modules in resources/assets directory');
|
||||
system('yarn');
|
||||
system('yarn --colors');
|
||||
chdir('../..');
|
||||
$this->info('└── Compiling assets');
|
||||
system('yarn');
|
||||
system('yarn production');
|
||||
system('yarn --colors');
|
||||
system('yarn production --colors');
|
||||
}
|
||||
|
||||
/** @return array<string> */
|
||||
|
|
Loading…
Reference in a new issue