inquirerjs-checkbox-search 0.3.0 ā 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
A multi-select prompt with text filtering/search capability for [inquirer.js](https://github.com/SBoudrias/Inquirer.js).
|
|
4
4
|
|
|
5
|
+
<img src="docs/img/header.gif" alt="Demo showing inquirerjs-checkbox-search in action" width="100%">
|
|
6
|
+
|
|
5
7
|
This prompt combines the functionality of `@inquirer/checkbox` and `@inquirer/search`, allowing you to:
|
|
6
8
|
|
|
7
9
|
- ā
**Multi-select** multiple options with checkboxes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inquirerjs-checkbox-search",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "A multi-select prompt with text filtering for inquirer.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"answer",
|
|
@@ -80,7 +80,12 @@
|
|
|
80
80
|
"typecheck": "tsc --noEmit",
|
|
81
81
|
"attw": "attw --pack",
|
|
82
82
|
"pkg:inspect": "rimraf package-inspect *.tgz && npm run build && npm pack && mkdir package-inspect && tar -xzf *.tgz -C package-inspect && echo '\\nš¦ Package extracted to package-inspect/ for inspection'",
|
|
83
|
-
"prepublishOnly": "npm run clean && npm run build && npm run test:ci && npm run attw"
|
|
83
|
+
"prepublishOnly": "npm run clean && npm run build && npm run test:ci && npm run attw",
|
|
84
|
+
"demo:docker:build": "docker build -f demos/Dockerfile -t vhs-node-demo .",
|
|
85
|
+
"demo:docker:run": "docker run --rm -v $PWD/docs/img:/workspace/docs/img vhs-node-demo",
|
|
86
|
+
"demo:generate:basic": "npm run demo:docker:build && npm run demo:docker:run demos/basic.tape",
|
|
87
|
+
"demo:generate:all": "npm run demo:generate:basic",
|
|
88
|
+
"demo:generate": "npm run demo:generate:basic"
|
|
84
89
|
},
|
|
85
90
|
"dependencies": {
|
|
86
91
|
"@inquirer/core": "^10.1.13",
|