npm package diff
Package: @forge/cli-shared
Versions: 6.8.0-next.11 - 6.8.0-next.12
File: package/out/ui/command-line-ui.js
Index: package/out/ui/command-line-ui.js
===================================================================
--- package/out/ui/command-line-ui.js
+++ package/out/ui/command-line-ui.js
@@ -162,16 +162,17 @@
}
promptForSecret(message) {
return this.promptForString(message, true);
}
- async promptForList(message, choices, config) {
+ async promptForList(message, choices, config, pageSize) {
const formattedChoices = config?.format ? choices.map((choice) => config?.format?.(choice)) : choices;
const { choice } = await this.prompt([
{
type: 'list',
name: 'choice',
choices: formattedChoices,
- message
+ message,
+ pageSize
}
]);
const formattedChoice = config?.format ? choices[formattedChoices.indexOf(choice)] : choice;
return formattedChoice;