Skip to content

Commit

Permalink
webpack output cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
joemaller committed Mar 10, 2021
1 parent f578909 commit 47a3ab5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/AfterDoneReporterPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class AfterDoneReporterPlugin {
apply(compiler) {
compiler.hooks.done.tapPromise(this.name, async (stats) => {
if (this.config.echo) {
const logger = stats.compilation.getLogger(this.name);
logger.info("hello from the real logger");
// const logger = stats.compilation.getLogger(this.name);
// logger.info("hello from the real logger");
setTimeout(() => console.log(this.config.prefix, this.config.message));
}
});
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const stats = {
assets: true,
builtAt: true,
cached: false,
children: true,
children: false, // Adds a bunch of blank lines to stats output
chunkGroups: false,
chunkModules: false,
chunkOrigins: false,
Expand Down

0 comments on commit 47a3ab5

Please sign in to comment.