This would allow much easier use of ES7 async/await. ``` js yargs.command('ls', 'List', async function() { ... }) ``` **Workaround** Use IIFE. ``` js yargs.command('ls', 'List', function () { (async function() { ... })().then() }) ```