aboutsummaryrefslogtreecommitdiff
path: root/src/bundler.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/bundler.zig')
-rw-r--r--src/bundler.zig4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bundler.zig b/src/bundler.zig
index 4e8d92e3c..734555ef5 100644
--- a/src/bundler.zig
+++ b/src/bundler.zig
@@ -653,9 +653,7 @@ pub const Bundler = struct {
pub noinline fn dumpEnvironmentVariables(bundler: *const Bundler) void {
@setCold(true);
const opts = std.json.StringifyOptions{
- .whitespace = std.json.StringifyOptions.Whitespace{
- .separator = true,
- },
+ .whitespace = .indent_2,
};
Output.flush();
std.json.stringify(bundler.env.map.*, opts, Output.writer()) catch unreachable;