-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Really need a way to minimize/alter build output information #4133
Comments
I assume it would be enough to make this api public? |
@LinusBorg, that should be sufficient, yes. Any output from webpack plugins would still be printed, correct? And linters? The optimal solution in my case would just be a flag that toggles the |
If I'm not mistaken, you should be able to use Report back if the kind of output you get with it is ok. |
@LinusBorg Yup, looks like what I want. 👍 I can trust this option to stick around, yeah? Even though it isn't documented? |
I think we can use this issue to discuss that we make it public. It won't disappear spontaneously anytime soon either way. |
Great, appreciate the prompt response, @LinusBorg ! |
This seems to be related: |
Another use case for this is a multi-tenanted application. We have a more-complex-than-usual |
What problem does this feature solve?
We're developing an app that's behind an enterprise authentication setup (ntlm) that doesn't play well with the yarn dev server (and yes, several people on my team have tried to get around this problem, without long term success). As a result, instead of the preferred
yarn serve
, we useyarn build --watch
during ongoing development. Unfortunately, after every update, the build process displays every chunk that has been generated, which completely pushes useful errors and warnings from the linter offscreen.As of now, there is no way for a user to disable this build output. I've seen several requests to be able to disable/alter build logging, but it seems like the Vue-cli devs struggle to grasp a tangible example for when this would add substantial value to the user. I understand that--it is, of course, important to prioritize features based on actual value added, so I just wanted to create this issue to give a concrete example where being unable to suppress or minimize build output information substantially frustrates the dev experience. Instead of being able to leave the terminal open in a separate screen and glance at it for linting errors, I have to scroll the terminal back up a full page length every time I save to see any compilation warnings or errors.
What does the proposed API look like?
--verbosity-level none | minimal | debug | default
The text was updated successfully, but these errors were encountered: