aboutsummaryrefslogtreecommitdiff
path: root/src/bundler.zig
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/bundler.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bundler.zig b/src/bundler.zig
index c4b296d34..484a25201 100644
--- a/src/bundler.zig
+++ b/src/bundler.zig
@@ -1832,7 +1832,8 @@ pub fn NewBundler(cache_files: bool) type {
&bundler.linker,
bundler.log,
);
- try css_writer.run(bundler.log, bundler.allocator);
+ var did_warn = false;
+ try css_writer.run(bundler.log, bundler.allocator, &did_warn);
output_file.size = css_writer.written;
var file_op = options.OutputFile.FileOperation.fromFile(file.handle, file_path.pretty);