npm package diff
Package: @forge/cli-shared
Versions: 6.8.0-next.4-experimental-479b182 - 6.8.0-next.5
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
@@ -4,8 +4,10 @@
const tslib_1 = require("tslib");
const cli_table3_1 = tslib_1.__importDefault(require("cli-table3"));
const inquirer_1 = tslib_1.__importDefault(require("inquirer"));
const ora_1 = tslib_1.__importDefault(require("ora"));
+const chalk_1 = tslib_1.__importDefault(require("chalk"));
+const yaml_1 = tslib_1.__importDefault(require("yaml"));
const log_color_1 = require("./log-color");
const log_symbols_1 = tslib_1.__importDefault(require("./log-symbols"));
const logger_1 = require("./logger");
const text_1 = require("./text");
@@ -344,6 +346,17 @@
registerCustomUIElements() {
this.promptInternal.registerPrompt('multiple-choice-table', multiple_table_prompt_1.MultipleChoiceTablePrompt);
this.promptInternal.registerPrompt('single-choice-table', single_table_prompt_1.SingleChoiceTablePrompt);
}
+ formatKeyValueList(items, indent, addNewLine) {
+ const formattedItems = items.map(({ key, value }) => {
+ const newLineOrSpace = addNewLine ? '\n ' : ' ';
+ return `[${chalk_1.default.cyan(key)}]:${newLineOrSpace}${value}`;
+ });
+ return (0, text_1.itemList)(formattedItems, indent);
+ }
+ formatYamlProperties(properties, key) {
+ const yamlString = yaml_1.default.stringify(properties, undefined, ' ').replaceAll('\n', '\n ');
+ return `[${chalk_1.default.cyan(key)}]: is configured with the following properties:\n ${yamlString}`;
+ }
}
exports.CommandLineUI = CommandLineUI;