
It looks as though ora swallows any stdout happening just before the .stop().
Example
const ora = require('ora');
const spinner = ora({
text: 'spinning...\n',
color: 'yellow'
});
spinner.start();
setTimeout(() => {
console.log('STOP');
spinner.stop();
}, 1000);
There is a $30.00 open bounty on this issue. Add more on Issuehunt.
It looks as though ora swallows any stdout happening just before the
.stop().Example