Skip to content

Releases: KamiKillertO/inquirer-select-directory

v.1.1.2

19 May 09:17
Compare
Choose a tag to compare

v1.1.0

18 Jan 17:17
Compare
Choose a tag to compare
  • Add option options.displayHidden to display hidden folder
  • Fix #2

v1.0.1

13 Dec 18:04
Compare
Choose a tag to compare
  • Fix #1 [BUGFIX] Fix a string issue
  • Remove some duplicate messages

πŸŽ‰ V1πŸŽ‰

26 Oct 11:49
Compare
Choose a tag to compare

Release inquirer-select-directory version 1 πŸŽ‰ πŸŽ‰.

Change

  • Add . and .. UNIX-like choices for the current and the parent directory

v.0.1.0

14 Aug 10:34
Compare
Choose a tag to compare

Release a new directory prompt for Inquirer.js inquirer.

Installation

npm install --save inquirer-select-directory

Features

  • Support for symlinked files
  • Vim style navigation
  • Search for file with "/" key

Key Maps

  • Press "/" key to enter search mode.
  • Press "-" key to go up (back) a directory.

Usage

This prompt is anonymous, meaning you can register this prompt with the type name you please:

inquirer.registerPrompt('directory', require('inquirer-select-directory'));
inquirer.prompt({
  type: 'directory',
  ...
})