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
[CLI][Schematics] Override Angular Schematics issue - no way to determine which arguments were provided by the user and which ones by the CLI parser
#29971
Moreover, in options argument from generateComponent function the values are already parsed by the cli making it impossible to distinguish which ones were provided by the user and which ones by the parser.
Minimal Reproduction
Please use the attached repo to reproduce the issue:
Execute schematics:
ng g c test
Options values received in generateComponent function:
This behavior is expected. The custom schematic is using the schema from @schematics/angular, and when invoked, it applies the default options to ./schematics:component, which are then passed down to @schematics/angular.
In angular.json, instead of using @schematics/angular:component, you should specify ./schematics:component.
Thank you for the explanation. In case I am calling the ng command from a root folder it indeed worked.
However, in case I go to any subfolder in my project, calling ng generate... ends up with an error. I created a dedicated issue for this: #29978
Command
generate
Is this a regression?
The previous version in which this bug was not present was
Unknown
Description
If you try to override standard Angular Schematics with a custom one by the use of schematicCollections option in angular.json file like for instance:
"cli": { "analytics": false, "schematicCollections": [ "./schematics", "@schematics/angular" ] }
And create your custom schematics (index.ts):
And define custom defaults using angular.json file, like for instance:
You will notice that your defaults are ignored.
Moreover, in options argument from generateComponent function the values are already parsed by the cli making it impossible to distinguish which ones were provided by the user and which ones by the parser.
Minimal Reproduction
Please use the attached repo to reproduce the issue:
Execute schematics:
Options values received in generateComponent function:
Exception or Error
Your Environment
Anything else relevant?
No response
The text was updated successfully, but these errors were encountered: