We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56df35b commit 4b0c99fCopy full SHA for 4b0c99f
scripts/build.js
@@ -142,7 +142,9 @@ function build(previousFileSizes) {
142
if (err) {
143
return reject(err);
144
}
145
- const messages = formatWebpackMessages(stats.toJson({}, true));
+ const messages = formatWebpackMessages(
146
+ stats.toJson({ all: false, warnings: true, errors: true })
147
+ );
148
if (messages.errors.length) {
149
// Only keep the first error. Others are often indicative
150
// of the same problem, but confuse the reader with noise.
0 commit comments