mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
13 lines
397 B
Zig
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;
|