@xmorse/cac 6.0.5 → 6.0.6
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/deno/Command.ts +3 -5
- package/dist/index.js +2 -8
- package/dist/index.mjs +2 -8
- package/package.json +1 -1
package/deno/Command.ts
CHANGED
|
@@ -150,11 +150,9 @@ class Command {
|
|
|
150
150
|
sections.push({
|
|
151
151
|
title: 'Commands',
|
|
152
152
|
body: commands.map(command => {
|
|
153
|
-
|
|
154
|
-
const firstLine =
|
|
155
|
-
|
|
156
|
-
const padding = ' ' + ' '.repeat(longestCommandName.length) + ' ';
|
|
157
|
-
return [` ${padRight(command.rawName, longestCommandName.length)} ${firstLine}`, ...restLines.map(line => `${padding} ${line}`)].join('\n');
|
|
153
|
+
// Only show first line of description in commands listing
|
|
154
|
+
const firstLine = command.description.split('\n')[0].trim();
|
|
155
|
+
return ` ${padRight(command.rawName, longestCommandName.length)} ${firstLine}`;
|
|
158
156
|
}).join('\n')
|
|
159
157
|
});
|
|
160
158
|
sections.push({
|
package/dist/index.js
CHANGED
|
@@ -358,14 +358,8 @@ class Command {
|
|
|
358
358
|
sections.push({
|
|
359
359
|
title: "Commands",
|
|
360
360
|
body: commands.map((command) => {
|
|
361
|
-
const
|
|
362
|
-
|
|
363
|
-
const restLines = descLines.slice(1);
|
|
364
|
-
const padding = " " + " ".repeat(longestCommandName.length) + " ";
|
|
365
|
-
return [
|
|
366
|
-
` ${padRight(command.rawName, longestCommandName.length)} ${firstLine}`,
|
|
367
|
-
...restLines.map((line) => `${padding} ${line}`)
|
|
368
|
-
].join("\n");
|
|
361
|
+
const firstLine = command.description.split("\n")[0].trim();
|
|
362
|
+
return ` ${padRight(command.rawName, longestCommandName.length)} ${firstLine}`;
|
|
369
363
|
}).join("\n")
|
|
370
364
|
});
|
|
371
365
|
sections.push({
|
package/dist/index.mjs
CHANGED
|
@@ -354,14 +354,8 @@ class Command {
|
|
|
354
354
|
sections.push({
|
|
355
355
|
title: "Commands",
|
|
356
356
|
body: commands.map((command) => {
|
|
357
|
-
const
|
|
358
|
-
|
|
359
|
-
const restLines = descLines.slice(1);
|
|
360
|
-
const padding = " " + " ".repeat(longestCommandName.length) + " ";
|
|
361
|
-
return [
|
|
362
|
-
` ${padRight(command.rawName, longestCommandName.length)} ${firstLine}`,
|
|
363
|
-
...restLines.map((line) => `${padding} ${line}`)
|
|
364
|
-
].join("\n");
|
|
357
|
+
const firstLine = command.description.split("\n")[0].trim();
|
|
358
|
+
return ` ${padRight(command.rawName, longestCommandName.length)} ${firstLine}`;
|
|
365
359
|
}).join("\n")
|
|
366
360
|
});
|
|
367
361
|
sections.push({
|