mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 20:02:40 +08:00
With this commit we introduce an interim solution for options prefixed with `no` in `schema.json` Previously, such options were handled as normal boolean option, but yargs handles options prefixed with `no` as negatations of the original option. Example with yargs, an option `noWatch` is will registered as `watch`. Closes #23397