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
If i use 2 js files each using progress bars, and an main js file that launches both using child process (note that the only way i got the child process to return the cli-progress output is using { shell: true, stdio: 'inherit' } option ) it overlaps the output and shows the last one updated
The text was updated successfully, but these errors were encountered:
use one process (master or a dedicated child) to run cli-progress (multi bar in your case) and pass the data from the workers via IPC channels to this process to display the progress
use one process (master or a dedicated child) to run cli-progress (multi bar in your case) and pass the data from the workers via IPC channels to this process to display the progress
If i use 2 js files each using progress bars, and an main js file that launches both using child process (note that the only way i got the child process to return the cli-progress output is using
{ shell: true, stdio: 'inherit' }
option ) it overlaps the output and shows the last one updatedThe text was updated successfully, but these errors were encountered: