log error on respondWith rejection,

Former-commit-id: 8f6312a17dc9811d54e4dc31d9ada68e98bae891
This commit is contained in:
Jarred Sumner
2021-08-17 04:10:21 -07:00
parent 1e81d4d2a9
commit 6997367242
9 changed files with 81 additions and 15 deletions

View File

@@ -22,5 +22,7 @@ const bundler = @import("../bundler.zig");
const NodeModuleBundle = @import("../node_module_bundle.zig").NodeModuleBundle;
pub const RunCommand = struct {
pub fn exec(ctx: Command.Context) !void {}
pub fn exec(ctx: Command.Context) !void {
Output.prettyErrorln("<r><red>nOt<r> <magenta>iMpLeMeNtEd<r> <yellow>yEt<r>", .{});
}
};