I have implemented log-update and I love it! Now I want to make it even prettier by adding the spinning dots.
How would I go about using both?
fs.readdirSync('./database/seeds', (err, files) => {
files.forEach((filename) => {
.then(result => {
logUpdate(`${filename}`);
})
})
I have implemented
log-updateand I love it! Now I want to make it even prettier by adding the spinning dots.How would I go about using both?