From 96aea696850839c2e70ac62e71f6a70d818d5a8a Mon Sep 17 00:00:00 2001 From: cuyl Date: Sun, 13 Sep 2020 02:32:40 +0800 Subject: [PATCH] fix(examples): prevent ibazel EOF Fixes #2143 --- examples/create-react-app/BUILD.bazel | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/create-react-app/BUILD.bazel b/examples/create-react-app/BUILD.bazel index 382b3be9f8..a1ca6cac08 100644 --- a/examples/create-react-app/BUILD.bazel +++ b/examples/create-react-app/BUILD.bazel @@ -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", + ], )