You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at webpack/webpack-cli#1017 (comment) and the various examples mentioned at #584 it's pretty clear that flagging all stderr output as [ERROR] is a but, not a feature.
Please add an option to disable this feature... ideally by default. At the very least we should be able to disable it if we want to.
Secondly, is there any chance of us getting colored output? Maven 3.5.0+ outputs ANSI colors. Yarn outputs ANSI colors. But when we run Yarn through this plugin we lose all colors. Instead of redirecting output to the log, would it help to output to stdout, stderr directly instead?
The text was updated successfully, but these errors were encountered:
I'm not so sure about the colors... also not too happy about forwarding stdout directly to system.out, since it's useful to use Maven's logging abstraction - potentially users might have some custom logging configuration, which will be respected with this plugin, when it uses Maven's logging abstraction.
Maybe Maven has changed its plugin API in 3.5.0 to support colors?
Looking at webpack/webpack-cli#1017 (comment) and the various examples mentioned at #584 it's pretty clear that flagging all stderr output as
[ERROR]
is a but, not a feature.Please add an option to disable this feature... ideally by default. At the very least we should be able to disable it if we want to.
Secondly, is there any chance of us getting colored output? Maven 3.5.0+ outputs ANSI colors. Yarn outputs ANSI colors. But when we run Yarn through this plugin we lose all colors. Instead of redirecting output to the log, would it help to output to stdout, stderr directly instead?
The text was updated successfully, but these errors were encountered: