Skip to content

Commit 09718c3

Browse files
committed
feat: add ls alias
1 parent fb87b18 commit 09718c3

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

packages/cli/commands/apps.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export function registerAppCommands(cli: Command) {
2424

2525
appsCommand
2626
.command("list")
27+
.alias("ls")
2728
.description("List all available apps.")
2829
.action(listAppsAction);
2930

packages/cli/commands/companies.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ export function registerCompanyCommands(cli: Command) {
6464

6565
companiesCommand
6666
.command("list")
67+
.alias("ls")
6768
.description("List all companies.")
6869
.addOption(appIdOption)
6970
.addOption(companyFilterOption)

packages/cli/commands/features.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ export function registerFeatureCommands(cli: Command) {
316316

317317
featuresCommand
318318
.command("list")
319+
.alias("ls")
319320
.description("List all features.")
320321
.addOption(appIdOption)
321322
.action(listFeaturesAction);

0 commit comments

Comments
 (0)