aboutsummaryrefslogtreecommitdiff
path: root/src/cli/bun_command.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/bun_command.zig')
-rw-r--r--src/cli/bun_command.zig6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cli/bun_command.zig b/src/cli/bun_command.zig
index a25b33c88..b8d7d3484 100644
--- a/src/cli/bun_command.zig
+++ b/src/cli/bun_command.zig
@@ -114,6 +114,12 @@ pub const BunCommand = struct {
return;
}
+ if (ctx.debug.dump_limits) {
+ fs.FileSystem.printLimits();
+ std.os.exit(0);
+ return;
+ }
+
var generated_server = false;
if (this_bundler.options.framework) |*framework| {
if (framework.toAPI(allocator, this_bundler.fs.top_level_dir) catch null) |_server_conf| {