-
-
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
--handle-input not working with Expo? #516
Comments
Sounds like it's detecting whether it's in TTY mode. I don't know how this is used, but the function name is pretty suggestive: If you pass the It'd be cool to have some env variable to force interactivity. |
Thanks. Do you think the raw option could be enabled just for a specific command rather than for all of them? So that I can have the output prefixed for all the other commands I run? |
Yep, this should already be possible today though through API mode. concurrently([
{ name: '...', command: 'foo', raw: true },
{ name: '...', command: 'bar' } // raw: false by default
]) Docs (it's lacking That said, I wouldn't say no to making the CLI |
so would it be |
Yes, but I'd favour using comma separators like in most other flags that accept multiple inputs (e.g. |
expo start
along with another command, I'm using--handle-input
but nothing happens when I pressr
(reload) ori
(open on iOS)concurrently -k -n 'mobile-client,backend' -c 'red,green' --handle-input 'yarn expo start' 'yarn workspace backend run dev'
The text was updated successfully, but these errors were encountered: