Skip to content

Commit c878387

Browse files
authored
fix: add live reload tag for ibazel (#2205)
Closes #2025
1 parent ee9bb25 commit c878387

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

js/private/js_run_devserver.bzl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,10 @@ def js_run_devserver(
270270
}),
271271
entry_point = Label("@aspect_rules_js//js/private:js_devserver_entrypoint"),
272272
# This rule speaks the ibazel protocol
273-
tags = kwargs.pop("tags", []) + ["ibazel_notify_changes"],
273+
tags = kwargs.pop("tags", []) + [
274+
"ibazel_live_reload",
275+
"ibazel_notify_changes",
276+
],
274277
tool_exec_cfg = tool,
275278
tool_target_cfg = tool,
276279
command = command,

0 commit comments

Comments
 (0)