Not sure to fully understand a concept with Angular Schematics. More precisly how to execute a schematic.
Reading from some articles, I saw that we have to use ng g my-schematics-collection:simple-schematic --name="some name"
.
In other articles I saw schematics my-schematics-collection:simple-schematic --name="Angular Community"
.
And again using NX, they simple use ng g component
, exactly like the base Angular Schematics to create a component. How can they overwrite the existing Angular Schematics? The fact that they doesn't point to their own schematics collection confuses me.
Can someone explain what to use for what use cases? Thanks!