Skip to content

Commit da33d2b

Browse files
kenotronSpaceK33z
authored andcommitted
speed up incremental builds by not doing excessive stats.toJSON work (#1362)
* speed up incremental builds by not doing excessive stats.toJSON work * turn more fields off from stats.toJSON since those other fields are not used
1 parent 3a7f7d5 commit da33d2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const createLog = require('./createLog');
2525
const OptionsValidationError = require('./OptionsValidationError');
2626
const optionsSchema = require('./optionsSchema.json');
2727

28-
const clientStats = { errorDetails: false };
28+
const clientStats = { all: false, assets: true, warnings: true, errors: true, errorDetails: false };
2929

3030
function Server(compiler, options, _log) {
3131
// Default options

0 commit comments

Comments
 (0)