Skip to content

Commit 96aea69

Browse files
cuylalexeagle
authored andcommitted
fix(examples): prevent ibazel EOF
Fixes #2143
1 parent 51647be commit 96aea69

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

examples/create-react-app/BUILD.bazel

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,10 @@ react_scripts(
100100
"start",
101101
],
102102
data = _RUNTIME_DEPS,
103+
tags = [
104+
# This tag instructs ibazel to pipe into stdin a event describing actions.
105+
# ibazel send EOF to stdin by default and `react-scripts start` will stop when getting EOF in stdin.
106+
# So use this to prevent EOF.
107+
"ibazel_notify_changes",
108+
],
103109
)

0 commit comments

Comments
 (0)