node-progress
node-progress copied to clipboard
Cursor should be on the next line
I have an importer that I can stop at any moment. So if I stop it, the output looks ugly:
Import [====----------------] 173/846Terminate batch job (Y/N)?
I expect this:
Import [====----------------] 173/846
Terminate batch job (Y/N)?
Ran into this to, but if you explicitly call .terminate() on the progress bar before you move on it fixes the issue, at least in my case.