mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-21 06:33:28 +00:00
52c2b041da
Change-type: patch Signed-off-by: Scott Lowe <scott@balena.io>
38 lines
1.6 KiB
Diff
38 lines
1.6 KiB
Diff
diff --git a/node_modules/@oclif/plugin-help/lib/command.js b/node_modules/@oclif/plugin-help/lib/command.js
|
|
index ab72c1b..75078d5 100644
|
|
--- a/node_modules/@oclif/plugin-help/lib/command.js
|
|
+++ b/node_modules/@oclif/plugin-help/lib/command.js
|
|
@@ -86,7 +86,7 @@ class CommandHelp {
|
|
if (!args.filter(a => a.description).length)
|
|
return;
|
|
let body = list_1.renderList(args.map(a => {
|
|
- const name = a.name.toUpperCase();
|
|
+ const name = a.required ? `<${a.name}>` : `[${a.name}]`;
|
|
let description = a.description || '';
|
|
if (a.default)
|
|
description = `[default: ${a.default}] ${description}`;
|
|
@@ -130,8 +130,7 @@ class CommandHelp {
|
|
value = flag.options.join('|');
|
|
}
|
|
if (!value.includes('|'))
|
|
- value = underline(value);
|
|
- left += `=${value}`;
|
|
+ left += ` <${value}>`;
|
|
}
|
|
let right = flag.description || '';
|
|
if (flag.type === 'option' && flag.default) {
|
|
diff --git a/node_modules/@oclif/plugin-help/lib/index.js b/node_modules/@oclif/plugin-help/lib/index.js
|
|
index 43acf30..bebefa6 100644
|
|
--- a/node_modules/@oclif/plugin-help/lib/index.js
|
|
+++ b/node_modules/@oclif/plugin-help/lib/index.js
|
|
@@ -74,7 +74,8 @@ class Help {
|
|
console.log(title + '\n');
|
|
console.log(this.command(command));
|
|
console.log();
|
|
- if (topics.length) {
|
|
+ const SUPPRESS_SUBTOPICS = true;
|
|
+ if (topics.length && !SUPPRESS_SUBTOPICS) {
|
|
console.log(this.topics(topics));
|
|
console.log();
|
|
}
|