I have a workspace including two angular libraries with ng add
schematics and a schematics project with a custom ng new
schematic.
I'd like to call the ng add
schematics of the libraries from my ng new
schematic, so I don't have to maintain their setup in two places.
Unfortunately this seems impossible because the externalSchematics
function requires the collection to be available which makes calling ng add
kind of pointless.
Is there another way to accomplish this?