@inquirer/prompts 3.0.3 → 3.1.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/dist/cjs/index.js +8 -11
- package/package.json +14 -15
package/dist/cjs/index.js
CHANGED
|
@@ -13,25 +13,22 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
13
13
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
|
-
};
|
|
19
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
17
|
exports.select = exports.rawlist = exports.password = exports.input = exports.expand = exports.editor = exports.confirm = exports.checkbox = void 0;
|
|
21
|
-
const checkbox_1 =
|
|
18
|
+
const checkbox_1 = require("@inquirer/checkbox");
|
|
22
19
|
exports.checkbox = checkbox_1.default;
|
|
23
|
-
const confirm_1 =
|
|
20
|
+
const confirm_1 = require("@inquirer/confirm");
|
|
24
21
|
exports.confirm = confirm_1.default;
|
|
25
|
-
const editor_1 =
|
|
22
|
+
const editor_1 = require("@inquirer/editor");
|
|
26
23
|
exports.editor = editor_1.default;
|
|
27
|
-
const expand_1 =
|
|
24
|
+
const expand_1 = require("@inquirer/expand");
|
|
28
25
|
exports.expand = expand_1.default;
|
|
29
|
-
const input_1 =
|
|
26
|
+
const input_1 = require("@inquirer/input");
|
|
30
27
|
exports.input = input_1.default;
|
|
31
|
-
const password_1 =
|
|
28
|
+
const password_1 = require("@inquirer/password");
|
|
32
29
|
exports.password = password_1.default;
|
|
33
|
-
const rawlist_1 =
|
|
30
|
+
const rawlist_1 = require("@inquirer/rawlist");
|
|
34
31
|
exports.rawlist = rawlist_1.default;
|
|
35
|
-
const select_1 =
|
|
32
|
+
const select_1 = require("@inquirer/select");
|
|
36
33
|
exports.select = select_1.default;
|
|
37
34
|
__exportStar(require("@inquirer/core"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inquirer/prompts",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Inquirer prompts, combined in a single package",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"typings": "./dist/cjs/types/index.d.ts",
|
|
@@ -55,10 +55,9 @@
|
|
|
55
55
|
"author": "Simon Boudrias <admin@simonboudrias.com>",
|
|
56
56
|
"license": "MIT",
|
|
57
57
|
"scripts": {
|
|
58
|
-
"tsc": "yarn run
|
|
59
|
-
"
|
|
60
|
-
"tsc:
|
|
61
|
-
"tsc:cjs": "tsc -p ./tsconfig.cjs.json && node ../../tools/fix-ext.mjs"
|
|
58
|
+
"tsc": "yarn run tsc:esm && yarn run tsc:cjs",
|
|
59
|
+
"tsc:esm": "rm -rf dist/esm && tsc -p ./tsconfig.json",
|
|
60
|
+
"tsc:cjs": "rm -rf dist/cjs && tsc -p ./tsconfig.cjs.json && node ../../tools/fix-ext.mjs"
|
|
62
61
|
},
|
|
63
62
|
"engines": {
|
|
64
63
|
"node": ">=14.18.0"
|
|
@@ -76,16 +75,16 @@
|
|
|
76
75
|
}
|
|
77
76
|
},
|
|
78
77
|
"dependencies": {
|
|
79
|
-
"@inquirer/checkbox": "^1.3.
|
|
80
|
-
"@inquirer/confirm": "^2.0.
|
|
81
|
-
"@inquirer/core": "^
|
|
82
|
-
"@inquirer/editor": "^1.2.
|
|
83
|
-
"@inquirer/expand": "^1.1.
|
|
84
|
-
"@inquirer/input": "^1.2.
|
|
85
|
-
"@inquirer/password": "^1.1.
|
|
86
|
-
"@inquirer/rawlist": "^1.2.
|
|
87
|
-
"@inquirer/select": "^1.2.
|
|
78
|
+
"@inquirer/checkbox": "^1.3.10",
|
|
79
|
+
"@inquirer/confirm": "^2.0.11",
|
|
80
|
+
"@inquirer/core": "^4.1.0",
|
|
81
|
+
"@inquirer/editor": "^1.2.9",
|
|
82
|
+
"@inquirer/expand": "^1.1.10",
|
|
83
|
+
"@inquirer/input": "^1.2.10",
|
|
84
|
+
"@inquirer/password": "^1.1.10",
|
|
85
|
+
"@inquirer/rawlist": "^1.2.10",
|
|
86
|
+
"@inquirer/select": "^1.2.10"
|
|
88
87
|
},
|
|
89
88
|
"homepage": "https://github.com/SBoudrias/Inquirer.js/blob/master/packages/prompts/README.md",
|
|
90
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "f5c544a8ded1c7dfb6ac8364759955e8f2ecfb0c"
|
|
91
90
|
}
|