mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 02:24:10 +08:00
We recently introduced the ability to pass object values from the command line (#28362). @clydin noticed that the initial behavior didn't work well for `--define`: It completely replaced all values even if just one of multiple defines is specified. This updates the architect to support merging of object options. If both the base option (e.g. from `angular.json`) and the override (e.g. from a CLI `--flag`) are objects, the objects are merged. See: https://github.com/angular/angular-cli/pull/28362
Angular Build Facade
WIP