Skip to content

Commit

Permalink
fix(component-desc): fix for component command desc
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeethedude committed Dec 4, 2024
1 parent 032a790 commit a36227d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,11 @@ system
.action(systemInstall);

// Component sub-commands.
const component = program.command(
'component',
'Parent command that contains sub-commands pertaining to components',
);
const component = program
.command('component')
.description(
'Parent command that contains sub-commands pertaining to components',
);
component
.command('list')
.description(
Expand Down

0 comments on commit a36227d

Please sign in to comment.