Skip to content

Instantly share code, notes, and snippets.

@jdx
Created August 13, 2015 19:01
Show Gist options
  • Save jdx/4a79b9c42d7eab788796 to your computer and use it in GitHub Desktop.
Save jdx/4a79b9c42d7eab788796 to your computer and use it in GitHub Desktop.
wrap inquirer in es6 promise
yield new Promise(function (resolve, reject) {
inquirer.prompt( questions, function ( answers ) {
if (answers.pipeline) resolve(answers.pipeline);
else reject('Must pick a pipeline');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment