Files
bun.sh/src/cli/pm_why_command.zig
taylor.fish 07cd45deae Refactor Zig imports and file structure (part 1) (#21270)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-07-22 17:51:38 -07:00

13 lines
397 B
Zig

pub const PmWhyCommand = struct {
pub fn exec(ctx: Command.Context, pm: *PackageManager, positionals: []const string) !void {
try WhyCommand.execFromPm(ctx, pm, positionals);
}
};
const string = []const u8;
const bun = @import("bun");
const WhyCommand = @import("./why_command.zig").WhyCommand;
const Command = bun.cli.Command;
const PackageManager = bun.install.PackageManager;