area17 / blast

Storybook for Laravel Blade 🚀
https://dev.to/area17/getting-started-with-blast-storybook-for-laravel-blade-c5c
Apache License 2.0
268 stars 39 forks source link

add colour and name output to what is running concurrently #83

Closed chrillep closed 1 year ago

chrillep commented 1 year ago

makes it easier to se what is doing what :)

closes #84

prefixColors: a list of colors as supported by [chalk](https://www.npmjs.com/package/chalk) or auto for an automatically picked color. If concurrently would run more commands than there are colors, the last color is repeated, unless if the last color value is auto which means following colors are automatically picked to vary. Prefix colors specified per-command take precedence over this list.

 - Custom names and colored prefixes

     $ concurrently --names "HTTP,WATCH" -c "bgBlue.bold,bgMagenta.bold"
     "http-server" "npm run watch"

 - Auto varying colored prefixes

     $ concurrently -c "auto" "npm run watch" "http-server"

 - Mixing auto and manual colored prefixes

     $ concurrently -c "red,auto" "npm run watch" "http-server" "echo hello"

ref:

mrtimbrook commented 1 year ago

I like it! It looks like this removes the $STORYBOOK_PORT option. Other than that it looks good so if you can add that back in I'll go ahead and merge

chrillep commented 1 year ago

whoops ill add it back. good eye! :)

chrillep commented 1 year ago

$STORYBOOK_PORT fixed :)

chrillep commented 1 year ago

@mrtimbrook ping

mrtimbrook commented 1 year ago

Thanks for this and sorry for the delayed response!