real time std in out
async callCommand(program: string, args: string[], message?: string) { return new Promise((resolve, reject) => { consola.info(message, '\n') try { const process = spawn(program, args, { stdio: 'inherit', shell: true }) process.on('close', code => resolve(code)) process.on('error', err => reject(err)) } catch (err) { reject(err) } }) }