ngx-cli-toolkit
ngx-cli-toolkit copied to clipboard
A toolkit that helps with the setup and generation of schematics in projects.
Issue https://github.com/kroeder/ngx-cli-toolkit/issues/7
When running `ng generate ngx-cli-toolkit:update-schematic foo` the generator sometimes cannot locate the project package.json I tested it with the following setup ``` projects/ ├─ ui/ │ ├─ schematics/ │ │...
The generated `ng generate` schematic should have `context: SchematicContext` as second argument
This ``` ng generate ngx-cli-toolkit:generate-schematic ... ``` should add `files` directory with templates for a component + spec file so that you don't have to start with a blank `ng...
The builder should help projects shipping their schematics to production Currently, you have to handle lots of things manually in Angular projects (like manual copy/paste things, using 'tsc' to compile...
Right now there's no dedicated tsconfig for building schematics if you run the `init` schematic
- In migrations.json the `update-schematic` schematic generates a `schema` field although it won't be used - The update schematic itself contains an interface with a default `name` but this is...