Skip to content

Commit a36227d

Browse files
committed
fix(component-desc): fix for component command desc
1 parent 032a790 commit a36227d

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/index.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,11 @@ system
7171
.action(systemInstall);
7272

7373
// Component sub-commands.
74-
const component = program.command(
75-
'component',
76-
'Parent command that contains sub-commands pertaining to components',
77-
);
74+
const component = program
75+
.command('component')
76+
.description(
77+
'Parent command that contains sub-commands pertaining to components',
78+
);
7879
component
7980
.command('list')
8081
.description(

0 commit comments

Comments
 (0)