eibens / edcb

A build tool and task runner for Deno.
MIT License
0 stars 0 forks source link

IO streaming for sub-processes #48

Open eibens opened 2 years ago

eibens commented 2 years ago

Right now stdout and stderr are printed only when the streams close, which means the user is kept waiting during long running sub-processes. One solution would be a new logging strategy based on events. Events would also improve logging for concurrent tasks, i.e. serve.

eibens commented 2 years ago

This will be easily possible once #53 is done.