Skip to content

Commit

Permalink
fix(examples): prevent ibazel EOF
Browse files Browse the repository at this point in the history
Fixes #2143
  • Loading branch information
cuyl authored and alexeagle committed Sep 20, 2020
1 parent 51647be commit 96aea69
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/create-react-app/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,10 @@ react_scripts(
"start",
],
data = _RUNTIME_DEPS,
tags = [
# This tag instructs ibazel to pipe into stdin a event describing actions.
# ibazel send EOF to stdin by default and `react-scripts start` will stop when getting EOF in stdin.
# So use this to prevent EOF.
"ibazel_notify_changes",
],
)

0 comments on commit 96aea69

Please sign in to comment.