From 48c8d81c39590dbce6c2ace423bc17fdabf10459 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 01:17:14 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- src/cli/bunx_command.zig | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/cli/bunx_command.zig b/src/cli/bunx_command.zig index b62ddc3c22..478c2c8954 100644 --- a/src/cli/bunx_command.zig +++ b/src/cli/bunx_command.zig @@ -867,21 +867,6 @@ pub const BunxCommand = struct { const string = []const u8; -const std = @import("std"); -const Run = @import("./run_command.zig").RunCommand; -const Allocator = std.mem.Allocator; - -const cli = @import("../cli.zig"); -const Command = cli.Command; - -const bun = @import("bun"); -const Environment = bun.Environment; -const Global = bun.Global; -const Output = bun.Output; -const default_allocator = bun.default_allocator; -const strings = bun.strings; -const UpdateRequest = bun.PackageManager.UpdateRequest; - /// Infers the binary name from a tarball URL string. /// For URLs like https://registry.npmjs.org/cowsay/-/cowsay-1.5.0.tgz /// extracts "cowsay" as the package name. @@ -934,3 +919,18 @@ fn inferBinNameFromTarball(url: string) string { return basename; } + +const std = @import("std"); +const Run = @import("./run_command.zig").RunCommand; +const Allocator = std.mem.Allocator; + +const cli = @import("../cli.zig"); +const Command = cli.Command; + +const bun = @import("bun"); +const Environment = bun.Environment; +const Global = bun.Global; +const Output = bun.Output; +const default_allocator = bun.default_allocator; +const strings = bun.strings; +const UpdateRequest = bun.PackageManager.UpdateRequest;