Skip to content

Commit

Permalink
fix(@angular/cli): allow configuration option in ng deploy
Browse files Browse the repository at this point in the history
Previously we only allowed `--project` and `--help` as a valid options. With this change we also allow `--configuration`

Fixes #17332
  • Loading branch information
alan-agius4 authored and kyliau committed Mar 30, 2020
1 parent 7fb34dc commit eb70da6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/angular/cli/commands/deploy.json
Expand Up @@ -20,6 +20,13 @@
}
}
},
"configuration": {
"description": "A named build target, as specified in the \"configurations\" section of angular.json.\nEach named target is accompanied by a configuration of option defaults for that target.",
"type": "string",
"aliases": [
"c"
]
},
"required": [
]
},
Expand Down

0 comments on commit eb70da6

Please sign in to comment.