Skip to content

Commit 82a0c6b

Browse files
authored
chore(cli): update Command enum (#32688)
This is a stopgap -- `Command` should eventually be generated but I do not have capability to generate enums or an equivalent type to replace this yet. I am using `Command` as an exhaustive list to generate other code blocks; it was not used that way in the past so it hasn't needed to be updated with new commands as they've been added. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 2355d1c commit 82a0c6b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

packages/aws-cdk/lib/settings.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ export enum Command {
3232
INIT = 'init',
3333
VERSION = 'version',
3434
WATCH = 'watch',
35+
GC = 'gc',
36+
ROLLBACK = 'rollback',
37+
IMPORT = 'import',
38+
ACKNOWLEDGE = 'acknowledge',
39+
NOTICES = 'notices',
40+
MIGRATE = 'migrate',
41+
CONTEXT = 'context',
42+
DOCS = 'docs',
43+
DOCTOR = 'doctor',
3544
}
3645

3746
const BUNDLING_COMMANDS = [

0 commit comments

Comments
 (0)