We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 595a149 commit 5d2d9c9Copy full SHA for 5d2d9c9
1 file changed
src/index.js
@@ -810,6 +810,14 @@ class CssMinimizerPlugin {
810
contentWorkerFactory.getWorker,
811
);
812
813
+ for (const warning of output.warnings) {
814
+ compilation.warnings.push(warning);
815
+ }
816
+
817
+ for (const error of output.errors) {
818
+ compilation.errors.push(error);
819
820
821
return output.source || source;
822
},
823
0 commit comments