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
@@ -31,7 +30,6 @@ async function parseCommandLineArguments() {
31
30
.option('app',{type: 'string',alias: 'a',desc: 'REQUIRED: command-line for executing your app or a cloud assembly directory (e.g. "node bin/my-app.js")',requiresArg: true})
.option('plugin',{type: 'array',alias: 'p',desc: 'Name or path of a node package that extend the CDK features. Can be specified multiple times',nargs: 1})
34
-
.option('rename',{type: 'string',desc: 'Rename stack name if different from the one defined in the cloud executable ([ORIGINAL:]RENAMED)',requiresArg: true})
35
33
.option('trace',{type: 'boolean',desc: 'Print trace for stack warnings'})
36
34
.option('strict',{type: 'boolean',desc: 'Do not construct stacks with warnings'})
37
35
.option('ignore-errors',{type: 'boolean',default: false,desc: 'Ignores synthesis errors, which will likely produce an invalid output'})
@@ -112,7 +110,6 @@ async function initCommandLine() {
112
110
configuration,
113
111
aws,
114
112
synthesizer: execProgram,
115
-
renames: parseRenames(argv.rename)
116
113
});
117
114
118
115
/** Function to load plug-ins, using configurations additively. */
0 commit comments