webpack-dev-middleware icon indicating copy to clipboard operation
webpack-dev-middleware copied to clipboard

Configurable logging

Open vjpr opened this issue 2 years ago • 1 comments

Modification Proposal

Currently, stats.toString() is printed on the compiler.hooks.afterDone hook, inside a process.nextTick() call.

I want to print something after that stats have all printed.

The nextTick means that even if I override the hook, I still can't print after it.

I want to be able to disable this hook from being set.

vjpr avatar May 05 '22 12:05 vjpr

You can create own plugin and use nextTick too

alexander-akait avatar May 05 '22 13:05 alexander-akait