pm: print command name to stdout (#14266)

This commit is contained in:
Meghan Denny
2024-10-02 02:24:37 -07:00
committed by GitHub
parent 87424390e1
commit 25083a4252
24 changed files with 781 additions and 240 deletions

View File

@@ -21,7 +21,7 @@ const Table = bun.fmt.Table;
pub const OutdatedCommand = struct {
pub fn exec(ctx: Command.Context) !void {
Output.prettyErrorln("<r><b>bun outdated <r><d>v" ++ Global.package_json_version_with_sha ++ "<r>", .{});
Output.prettyln("<r><b>bun outdated <r><d>v" ++ Global.package_json_version_with_sha ++ "<r>", .{});
Output.flush();
const cli = try PackageManager.CommandLineArguments.parse(ctx.allocator, .outdated);