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
Some commands such as CRA's "start" script clear the console (see facebook/create-react-app#2495), causing the previous output of the other commands to disappear when used with concurrently.
Would it be possible to add a command-line option to concurrently to disable the console clearing for all the child commands?
The text was updated successfully, but these errors were encountered:
My issue was "tsc -w" clearing the console and that was fixed in microsoft/TypeScript#21295. In this ticket there are also some workarounds that might help, like dropping the control character that clears the screen using sed or awk.
For sanity of concurrently, I think it would be better to have the non-clearing option opt-in, and letting the user disabling it if he wants. Otherwise it's really weird, you can pretty easily get some other messages cleared by your compiler, etc. (Which is my case for info, my frontend messages are cleaned by the TS compiler, and I couldn't see them properly.)
I can take a look and make a PR if that seems a good idea
Some commands such as CRA's "start" script clear the console (see facebook/create-react-app#2495), causing the previous output of the other commands to disappear when used with
concurrently
.Would it be possible to add a command-line option to
concurrently
to disable the console clearing for all the child commands?The text was updated successfully, but these errors were encountered: