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
I'm new to development on this package—any feedback regarding testing is appreciated.
Closes#28371.
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Copy file name to clipboardExpand all lines: packages/aws-cdk/lib/cli.ts
+3-1
Original file line number
Diff line number
Diff line change
@@ -172,7 +172,8 @@ async function parseCommandLineArguments(args: string[]) {
172
172
})
173
173
.option('concurrency',{type: 'number',desc: 'Maximum number of simultaneous deployments (dependency permitting) to execute.',default: 1,requiresArg: true})
174
174
.option('asset-parallelism',{type: 'boolean',desc: 'Whether to build/publish assets in parallel'})
175
-
.option('asset-prebuild',{type: 'boolean',desc: 'Whether to build all assets before deploying the first stack (useful for failing Docker builds)',default: true}),
175
+
.option('asset-prebuild',{type: 'boolean',desc: 'Whether to build all assets before deploying the first stack (useful for failing Docker builds)',default: true})
176
+
.option('ignore-no-stacks',{type: 'boolean',desc: 'Whether to deploy if the app contains no stacks',default: false}),
176
177
)
177
178
.command('import [STACK]','Import existing resource(s) into the given STACK',(yargs: Argv)=>yargs
178
179
.option('execute',{type: 'boolean',desc: 'Whether to execute ChangeSet (--no-execute will NOT execute the ChangeSet)',default: true})
0 commit comments