You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/aws-cdk/lib/cli/cli-config.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ export async function makeConfig(): Promise<CliConfig> {
44
44
'ci': {type: 'boolean',desc: 'Force CI detection. If CI=true then logs will be sent to stdout instead of stderr',default: YARGS_HELPERS.isCI()},
45
45
'unstable': {type: 'array',desc: 'Opt in to unstable features. The flag indicates that the scope and API of a feature might still change. Otherwise the feature is generally production ready and fully supported. Can be specified multiple times.',default: []},
46
46
'telemetry-file': {type: 'string',desc: 'Send telemetry data to a local file.',default: undefined},
47
-
'yes': {type: 'boolean',alias: 'y',desc: 'Skip interactive prompts. If yes=true then the operation will proceed without confirmation.',default: false},
47
+
'yes': {type: 'boolean',alias: 'y',desc: 'Automatically answer interactive prompts with the recommended response. This includes confirming actions.',default: false},
0 commit comments