diff options
Diffstat (limited to 'tools/eslint/node_modules/inquirer/README.md')
-rw-r--r-- | tools/eslint/node_modules/inquirer/README.md | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/tools/eslint/node_modules/inquirer/README.md b/tools/eslint/node_modules/inquirer/README.md index 8e6baeb49b..fe9d2acb7e 100644 --- a/tools/eslint/node_modules/inquirer/README.md +++ b/tools/eslint/node_modules/inquirer/README.md @@ -22,6 +22,7 @@ A collection of common interactive command line user interfaces. 4. [News](#news) 5. [Contributing](#contributing) 6. [License](#license) + 7. [Plugins](#plugins) ## Goal and Philosophy @@ -86,7 +87,7 @@ Register prompt plugins under `name`. #### `inquirer.createPromptModule() -> prompt function` -Create a self contained inquirer module. If don't want to affect other libraries that also rely on inquirer when you overwrite or add new prompt types. +Create a self contained inquirer module. If you don't want to affect other libraries that also rely on inquirer when you overwrite or add new prompt types. ```js var prompt = inquirer.createPromptModule(); @@ -352,3 +353,22 @@ to [@vaxilart](https://twitter.com/Vaxilart)) or just add your name to [the wiki Copyright (c) 2016 Simon Boudrias (twitter: [@vaxilart](https://twitter.com/Vaxilart)) Licensed under the MIT license. + +## Plugins +<a name="plugins"></a> + +### Prompts ### + +[__autocomplete__](https://github.com/mokkabonna/inquirer-autocomplete-prompt)<br> +Presents a list of options as the user types, compatible with other packages such as fuzzy (for search)<br> +<br> +![autocomplete prompt](https://github.com/mokkabonna/inquirer-autocomplete-prompt/raw/master/inquirer.gif) + +[__datetime__](https://github.com/DerekTBrown/inquirer-datepicker-prompt)<br> +Customizable date/time selector using both number pad and arrow keys<br> +<br> +![Datetime Prompt](https://github.com/DerekTBrown/inquirer-datepicker-prompt/raw/master/example/datetime-prompt.png) + +[__inquirer-select-line__](https://github.com/adam-golab/inquirer-select-line)<br> +Prompt for selecting index in array where add new element +![inquirer-select-line gif](https://media.giphy.com/media/xUA7b1MxpngddUvdHW/giphy.gif)
\ No newline at end of file |