mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 19:38:58 +00:00
[bun install] Start add/remove command
This commit is contained in:
8
src/cli/remove_command.zig
Normal file
8
src/cli/remove_command.zig
Normal 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);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user