Skip to content

Commit

Permalink
Merge pull request #313 from emulsify-ds/develop
Browse files Browse the repository at this point in the history
Release with fix for Component command
  • Loading branch information
mikeethedude authored Dec 4, 2024
2 parents 21291a9 + e18a387 commit 31ad3d2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emulsify/cli",
"version": "1.11.3",
"version": "1.11.4",
"description": "Command line interface for Emulsify",
"repository": "[email protected]:emulsify-ds/emulsify-cli.git",
"author": "Patrick Coffey <[email protected]>",
Expand Down
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 31ad3d2

Please sign in to comment.