We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Noticed this with latest canary:
We should filter all warnings out when we fail the build.
The text was updated successfully, but these errors were encountered:
Look like this happen after we added thread-loader. it cause webpack report errors and warnings together as an error.
thread-loader
I tested by remove thread-loader and the output work fine.
Sorry, something went wrong.
I tried to debug, and that's what I found out: with enabled thread-loader webpack returns object stats with following structure
stats
{ "warnings": [], "errors": [/concatenated errors and warnings/] } So every attempt to differ them like here
{ "warnings": [], "errors": [/concatenated errors and warnings/] }
create-react-app/packages/react-dev-utils/WebpackDevServerUtils.js
Line 164 in d72678f
This has been resolved in next.
next
No branches or pull requests
Noticed this with latest canary:
We should filter all warnings out when we fail the build.
The text was updated successfully, but these errors were encountered: