I've created a project long time ago using angular cli. If I wan't to create a schematic inside, it is being created as a new project so it looks like:
my-project
node-modules
simple-schematic
node-modules
How could I integrate my existing project my-project
to be treated as a root for schematics? After creating blank schematic, I'd like to have:
my-project
node-modules
src
schematics (directory for schematics)
app
I'm, the schematic is supposed to be added to the project instead of creating a new project.