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
Only the first error of an erroneous build is output to the console leaving the developer without all of the relevant details required to troubleshoot. Additional errors are intentionally truncated here:
// Only keep the first error. Others are often indicative
// of the same problem, but confuse the reader with noise.
if(messages.errors.length>1){
messages.errors.length=1;
}
Second and subsequent errors are most certainly not "noise". They provide vital insight in to the cause of problems and save developers from chasing their tails trying to troubleshoot failures with limited detail.
PR incoming.
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had any recent activity. It will be closed in 5 days if no further activity occurs.
Only the first error of an erroneous build is output to the console leaving the developer without all of the relevant details required to troubleshoot. Additional errors are intentionally truncated here:
create-react-app/packages/react-scripts/scripts/build.js
Lines 191 to 195 in a4fa63f
Second and subsequent errors are most certainly not "noise". They provide vital insight in to the cause of problems and save developers from chasing their tails trying to troubleshoot failures with limited detail.
PR incoming.
The text was updated successfully, but these errors were encountered: