Created
May 30, 2021 12:33
-
-
Save RubaXa/ca78c9dad53a9844b31dcb7e0d6e260f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async handler(argv, {console, describe, options, style}) { | |
// Print command description | |
console.important(describe); | |
// Prompt user for option or use default | |
const value = await console.cli.require(options.val); | |
// Print 'value' with style and color | |
console.log('value:', style.bold.cyan(value), style.gray(argv.val)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment