diff --git a/lib/console/help.js b/lib/console/help.js index a9b38501..3ee452cd 100644 --- a/lib/console/help.js +++ b/lib/console/help.js @@ -95,7 +95,7 @@ function printList(title, list) { for (let i = 0; i < length; i++) { const { description = list[i].desc } = list[i]; const pad = ' '.repeat(maxLen - lengths[i] + 2); - str += ` ${chalk.bold(list[i].name)}${pad}${description}`; + str += ` ${chalk.bold(list[i].name)}${pad}${description}\n`; } console.log(str);