You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we've had several issues using lerna exec/run and use the concurrently package in place of lerna exec/run. it requires a bit of setup but overall has more features and fewer bugs.
This change is introduced by commit 7e6d6cd, and can be worked around by commenting out these lines in node_modules/react-scripts/scripts/start.js:168
if (isInteractive || process.env.CI !== 'true') {
// Gracefully exit when stdin ends
process.stdin.on('end', function () {
devServer.close();
process.exit();
});
// Comment out this line
// process.stdin.resume();
}
Activity
abrcdf1023 commentedon Mar 22, 2020
I have the same issue need rollback to v3.4.0 currently.
cevr commentedon Mar 22, 2020
From what I can tell, this only happens when the
--stream
argument is presentgrahamvo commentedon Mar 23, 2020
I'm also seeing this issue. Tried removing
--stream
and it still isn't working.rettgerst commentedon Mar 23, 2020
we've had several issues using lerna exec/run and use the concurrently package in place of lerna exec/run. it requires a bit of setup but overall has more features and fewer bugs.
grahamvo commentedon Mar 23, 2020
I ended up reverting back to
3.4.0
for the time being until this is fixed.hieuxlu commentedon Mar 24, 2020
This change is introduced by commit 7e6d6cd, and can be worked around by commenting out these lines in
node_modules/react-scripts/scripts/start.js:168
feat: skip std resume to support lerna parallel
ddc22 commentedon Mar 30, 2020
Facing this same issue. I think lerna maybe triggering an end after running a task in parallel.
setup prod and dev npm scripts
bukharov commentedon Mar 31, 2020
Instead of commenting out the line I set
isInteractive
tofalse
, but the issue is still there. SettingCI
env totrue
solves it however.14 remaining items