Skip to content

Commit

Permalink
fix: mark commands as beta (#269)
Browse files Browse the repository at this point in the history
* fix: mark commands as beta

* Update display.ts

* Update list.ts

* Update open.ts
  • Loading branch information
peternhale authored Apr 13, 2022
1 parent 2efa46b commit e0fd353
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/env/create/scratch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default class EnvCreateScratch extends SfCommand<ScratchCreateResponse> {
summary: messages.getMessage('flags.client-id.summary'),
}),
};

public static readonly state = 'beta';
public async run(): Promise<ScratchCreateResponse> {
const lifecycle = Lifecycle.getInstance();

Expand Down
1 change: 1 addition & 0 deletions src/commands/env/delete/sandbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default class EnvDeleteSandbox extends SfCommand<SandboxDeleteResponse> {
summary: messages.getMessage('flags.no-prompt.summary'),
}),
};
public static readonly state = 'beta';

public async run(): Promise<SandboxDeleteResponse> {
const { flags } = await this.parse(EnvDeleteSandbox);
Expand Down
1 change: 1 addition & 0 deletions src/commands/env/delete/scratch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export default class EnvDeleteScratch extends SfCommand<ScratchDeleteResponse> {
summary: messages.getMessage('flags.no-prompt.summary'),
}),
};
public static readonly state = 'beta';

public async run(): Promise<ScratchDeleteResponse> {
const { flags } = await this.parse(EnvDeleteScratch);
Expand Down
1 change: 1 addition & 0 deletions src/commands/env/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export default class EnvList extends SfCommand<Environments> {
summary: messages.getMessage('flags.sort.summary'),
}),
};

private flags!: {
all: boolean;
columns: string[];
Expand Down

0 comments on commit e0fd353

Please sign in to comment.