Skip to content

Commit

Permalink
fix: update logging of next steps
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Jan 20, 2025
1 parent 5b5c91b commit 54553dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli-plugin-extensions/src/generateExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ export const generateExtension = async ({ input, ora, context }: GenerateExtensi
if (nextSteps.length > 0) {
console.log();
console.log(chalk.bold("Next Steps"));
nextSteps.forEach(message => {
console.log(`‣ ${message}`);
nextSteps.forEach(({ text, variables = [] }) => {
console.log(`‣ ${text}`, ...variables.map(v => context.success.hl(v)));
});
}

Expand Down

0 comments on commit 54553dc

Please sign in to comment.