We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d173253 commit 1e9fd5fCopy full SHA for 1e9fd5f
packages/@angular/cli/commands/run.ts
@@ -16,9 +16,13 @@ export default class RunCommand extends ArchitectCommand {
16
17
public async run(options: RunOptions) {
18
if (options.target) {
19
- const [project, target, configuration] = options.target.split(':');
+ let [project, target, configuration] = options.target.split(':');
20
const overrides = { ...options };
21
delete overrides.target;
22
+ if (overrides.configuration) {
23
+ configuration = overrides.configuration;
24
+ delete overrides.configuration;
25
+ }
26
return this.runArchitectTarget({
27
project,
28
target,
0 commit comments