Skip to content

Commit

Permalink
Merge pull request #2076 from embroider-build/stable-webpack-type-change
Browse files Browse the repository at this point in the history
[Stable]: Follow upstream type change from webpack
  • Loading branch information
ef4 authored Aug 27, 2024
2 parents 8e5763c + 4486b12 commit 57f99b0
Showing 1 changed file with 2 additions and 2 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 @@ -550,7 +550,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 @@ -560,7 +560,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

0 comments on commit 57f99b0

Please sign in to comment.