[bun install] Start add/remove command

This commit is contained in:
Jarred Sumner
2021-12-07 19:09:19 -08:00
parent 41c60fb848
commit 6382bb5333
8 changed files with 186 additions and 150 deletions

View File

@@ -0,0 +1,8 @@
const Command = @import("../cli.zig").Command;
const PackageManager = @import("../install/install.zig").PackageManager;
pub const RemoveCommand = struct {
pub fn exec(ctx: Command.Context) !void {
try PackageManager.remove(ctx);
}
};