Skip to content

Commit

Permalink
fix(examples): prevent ibazel EOF
Browse files Browse the repository at this point in the history
  • Loading branch information
cuyl authored and Yuchao Liang committed Sep 12, 2020
1 parent 3639df1 commit 083873d
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 @@ -99,5 +99,11 @@ react_scripts(
"--node_options=--require=$(rootpath chdir.js)",
"start",
],
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",
],
data = _RUNTIME_DEPS,
)

0 comments on commit 083873d

Please sign in to comment.