[bun install] Implement bun link

This commit is contained in:
Jarred Sumner
2022-08-07 23:23:34 -07:00
parent f990df97ce
commit cc2c50ad09
13 changed files with 864 additions and 90 deletions

View File

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