|
|
1 rok temu | |
|---|---|---|
| .. | ||
| .github | 1 rok temu | |
| dist | 1 rok temu | |
| example | 1 rok temu | |
| src | 1 rok temu | |
| CHANGELOG.md | 1 rok temu | |
| README.md | 1 rok temu | |
| package.json | 1 rok temu | |
| tsconfig.json | 1 rok temu | |
npm install inquirer-file-tree-selection-prompt
inquirer.registerPrompt('file-tree-selection', inquirerFileTreeSelection)
inquirer.prompt({
type: 'file-tree-selection',
...
})
Takes type, name, message, [filter, validate, transformer, default, pageSize, onlyShowDir, onlyShowValid, hideChildrenOfValid, root, hideRoot, multiple, enableGoUpperDirector] properties.
The extra options that this plugin provides are:
onlyShowDir: (Boolean) if true, will only show directory. Default: false.root: (String) it is the root of file tree. Default: process.cwd().onlyShowValid: (Boolean) if true, will only show valid files (if validate is provided). Default: false.hideChildrenOfValid: (Boolean) if true, will hide children of valid directories (if validate is provided). Default: false.transformer: (Function) a hook function to transform the display of directory or file name.multiple: (Boolean) if true, will enable to select multiple files. Default: false.enableGoUpperDirector: (Boolean) Show .. in inside root dir, and the user can press space on it to go upper directory. Default: false.When multiple is enabled, default should be string[] type, otherwise it's string type.
version >= 1.0.16
Install @types/inquirer
Ensure you have registered with file-tree-selection
inquirer.registerPrompt('file-tree-selection', inquirerFileTreeSelection)
const inquirer = require('inquirer')
const inquirerFileTreeSelection = require('inquirer-file-tree-selection-prompt')
inquirer.registerPrompt('file-tree-selection', inquirerFileTreeSelection)
inquirer
.prompt([
{
type: 'file-tree-selection',
name: 'file'
}
])
.then(answers => {
console.log(JSON.stringify(answers))
});