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
This issues is for showing progress of the compilation step (before and after running interface-to-json).
elm-make normally shows a progress bar, and elm-test shows the final output of elm-make, so I'm guessing that elm-make's progress is not being shows because of the buffering of the pipes when elm-test spawns the elm-make process: presumably elm-makes doesn't print a newline until the compilation completes, and if we spawn it with line buffering, then the progress indicator won't be shown. If that's actually what's happening, then the fix for this would be to change the way elm-test spawns elm-make, either changing it to inherit stdout, or changing the stdout pipe to buffer in a different way.
The text was updated successfully, but these errors were encountered:
Related to #169
This issues is for showing progress of the compilation step (before and after running interface-to-json).
elm-make
normally shows a progress bar, andelm-test
shows the final output ofelm-make
, so I'm guessing thatelm-make
's progress is not being shows because of the buffering of the pipes when elm-test spawns the elm-make process: presumably elm-makes doesn't print a newline until the compilation completes, and if we spawn it with line buffering, then the progress indicator won't be shown. If that's actually what's happening, then the fix for this would be to change the way elm-test spawns elm-make, either changing it to inherit stdout, or changing the stdout pipe to buffer in a different way.The text was updated successfully, but these errors were encountered: