sindresorhus/ora

The ora.succeed() method behaves inconsistently between Node.js version 16 and version 19.

wangyangexpo opened this issue · 0 comments

// node version 16
const checking = ora();
checking.succeed('success'); // will exit the process Immediately

// node version 19 or 21
const checking = ora();
checking.succeed('success'); // does not exit the process until timeout