diff options
author | 2021-12-08 05:21:03 -0800 | |
---|---|---|
committer | 2021-12-16 19:18:51 -0800 | |
commit | 3036cbe5527a81ad9991d9ace27640af2d57e645 (patch) | |
tree | 928d2a02db08bb7219c94c52946eace437f6b6c3 /src/cli.zig | |
parent | 393aa076bc0c8820e73a6f7e5a8d7753a118eb67 (diff) | |
download | bun-3036cbe5527a81ad9991d9ace27640af2d57e645.tar.gz bun-3036cbe5527a81ad9991d9ace27640af2d57e645.tar.zst bun-3036cbe5527a81ad9991d9ace27640af2d57e645.zip |
`bun add` and `bun remove` sorta works now. but not fast enough!
Diffstat (limited to 'src/cli.zig')
-rw-r--r-- | src/cli.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli.zig b/src/cli.zig index 79f10049f..0294ea791 100644 --- a/src/cli.zig +++ b/src/cli.zig @@ -455,7 +455,7 @@ const HelpCommand = struct { }; // someone will get mad at me for this - const packages_to_remove_filler = [_]string{ + pub const packages_to_remove_filler = [_]string{ "moment", "underscore", "jquery", @@ -466,7 +466,7 @@ const HelpCommand = struct { "babel-core", }; - const packages_to_add_filler = [_]string{ + pub const packages_to_add_filler = [_]string{ "astro", "react", "next@^12", |