Skip to content

Commit

Permalink
feat: add beta state to pu list command
Browse files Browse the repository at this point in the history
  • Loading branch information
btrn11 committed Dec 13, 2024
1 parent 5ee2cc3 commit 1616eaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/package/pushupgrade/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export class PackagePushRequestListCommand extends SfCommand<PackagePushRequestL
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static state = 'beta';
public static readonly aliases = ['force:package:pushupgrade:list'];
public static readonly flags = {
'target-dev-hub': requiredHubFlag,
Expand Down Expand Up @@ -81,7 +82,7 @@ export class PackagePushRequestListCommand extends SfCommand<PackagePushRequestL
NumOrgsUpgradedSuccess: 0,
}));

this.table({ data, overflow: 'wrap', title: chalk.blue(`Push Upgrade List: [${results.length}]`) });
this.table({ data, overflow: 'wrap', title: chalk.blue(`Push Upgrade Request List: [${results.length}]`) });
}
return results;
}
Expand Down

0 comments on commit 1616eaf

Please sign in to comment.