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
I'm using the npm-run-all api to run some tasks in parallel.
I want to redirect the output of each task to a separate file, so I can't use the stdout option to create a file. I tried to redirect or pipe the task output with by appending > task.out or | tee task.out to the task, but this failed.
I digged around a little bit and found that in run-task.js shell-quote is called, which puts > and | in quotes which makes them useless.
Is there a way to achieve what I want?
The text was updated successfully, but these errors were encountered:
I'm using the npm-run-all api to run some tasks in parallel.
I want to redirect the output of each task to a separate file, so I can't use the stdout option to create a file. I tried to redirect or pipe the task output with by appending
> task.out
or| tee task.out
to the task, but this failed.I digged around a little bit and found that in
run-task.js
shell-quote is called, which puts > and | in quotes which makes them useless.Is there a way to achieve what I want?
The text was updated successfully, but these errors were encountered: