-
Notifications
You must be signed in to change notification settings - Fork 358
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
Limit the amount of printed warnings/errors #1323
Comments
Rendering the remaining count will be tricky: warnings are rendered during the compilation, not at the end. For errors, it is impossible to have multiple ones: reaching an error means the end of the compilation. |
We will also need a way to explicitly enable printing all warnings (e.g. with a |
Co-authored-by: awjin <[email protected]>
Is there an option to hide all the deprecation warnings for version 1.*? In one of my projects we do have a dependency to bootstrap-sass which probably won't get fixed. |
In #1319, an overwhelming number of deprecation warnings were printed to the terminal, forcing the user to end the process.
We should add a ceiling to the number of warnings that get printed to the terminal—100?—that, when surpassed, just prints the remaining count. Something along the lines of:
The text was updated successfully, but these errors were encountered: