marzeelabs / besugo

Boilerplate for MZ version of hugo + netlifyCMS
https://besugo.marzeelabs.org
10 stars 0 forks source link

Cleaner console when serving locally #24

Closed Quicksaver closed 6 years ago

Quicksaver commented 7 years ago

Currently every task has its own "isolated" output style, most of it is useless when it runs as expected at least. Kind of how create-react-app does it, it would be much nicer to see something like...

Building your website...
Build is done, serving at port 1313
Watching for changes...
Quicksaver commented 6 years ago

This will require watching every process running, and outputting messages based on the state of each process. It would be an easier job if everything was being done within webpack, in which case we'd just need a plugin that follows the various compilation stages (e.g. https://github.com/stanza/stanza/blob/master/src/scripts/development/hot-client-server.js#L29-L58).

Right now the console is clean enough, showing mostly only end-results when each task runs.