在我的CLI应用程序中,我定义了此自定义微调器
const throbber = ora({
text: 'Tinkering with all the Zoinkys',
spinner: {
frames: ['', '', '', ''],
interval: 300, // Optional
},
}).start();
然后我在主函数中调用它
function main() {
setTimeout(() => {
throbber.stop();
}, 1000 * 10);
}
我的问题是,由于框架有点小并且在运行时我无法分辨它们,是否可以增加框架的大小?