-
-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filter for output of specific commands #434
Comments
How does the existing |
I have a similar situation. I have two processes and would like to use Would it make sense to support this? |
Yes, but note that raw mode implies inheriting stdio, which means no control over the output. concurrently/src/get-spawn-opts.ts Line 42 in a61ef39
It might be possible to change it to |
It works I guess but I run many tasks, so it's much easier to list the task I want to see instead of every other task. |
Thumbs up for Update: Found a surprisingly simple solution:
|
☝️ It's been released now. |
Description: Allow me to filter which command outputs I want to display. Still run all tasks.
Use case: I want to debug a particular task of the set of tasks I run with
concurrently
and focus on its outputs. At the moment, I solve this by callingnpm run dev | grep name-of-task
. This works but potentially includes false positives. Additionally,concurrently
will not color the task name because it is not directly attached to the terminal.The text was updated successfully, but these errors were encountered: