This package is a simple and helpful tool for scaffolding modules, containers, and components. Most of the util functions are based on the @ngrx/schematics package.
Add it to your development dependencies:
- npm:
npm install --save-dev ngx-architect
- yarn:
yarn install --save-dev ngx-architect
- Interactive:
ng g ngx-architect:module
- Non-interactive:
ng g ngx-architect:module --name ModuleName
- Interactive:
ng g ngx-architect:container
- Non-interactive:
ng g ngx-architect:container --name MyContainer --module MyModule
- Interactive:
ng g ngx-architect:component
- Non-interactive:
ng g ngx-architect:component --name MyComponent --module MyModule