Skip to content

Commit

Permalink
Merge pull request #2072 from embroider-build/webpack-type-change
Browse files Browse the repository at this point in the history
Follow upstream type change from webpack
  • Loading branch information
ef4 authored Aug 22, 2024
2 parents c2dff54 + 1a5e76a commit d9fc688
Show file tree
Hide file tree
Showing 2 changed files with 2,478 additions and 2,477 deletions.
4 changes: 2 additions & 2 deletions packages/webpack/src/ember-webpack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ const Webpack: PackagerConstructor<Options> = class Webpack implements Packager
// write all the stats output to the console
this.consoleWrite(
stats.toString({
color: Boolean(supportsColor.stdout),
colors: Boolean(supportsColor.stdout),
})
);

Expand All @@ -564,7 +564,7 @@ const Webpack: PackagerConstructor<Options> = class Webpack implements Packager
if (stats.hasWarnings() || process.env.VANILLA_VERBOSE) {
this.consoleWrite(
stats.toString({
color: Boolean(supportsColor.stdout),
colors: Boolean(supportsColor.stdout),
})
);
}
Expand Down
Loading

0 comments on commit d9fc688

Please sign in to comment.