@ngneat/aim
v2.0.0
Published
Angular schematics that creates Angular inline modules
Downloads
5,098
Readme
Angular Inline Module Schematics
Installation
npm i @ngneat/aim --save-dev
Usage
Component
ng g @ngneat/aim:component name
Directive
ng g @ngneat/aim:directive name
Pipe
ng g @ngneat/aim:pipe name
Notes
- You can use every option from the default Angular schematics. For example:
ng g @ngneat/aim:component --name=bar --inlineStyle --inlineTemplate
- You can define default values for the schematics in your
angular.json
file:
"schematics": {
"@ngneat/aim:component": {
"changeDetection": "OnPush"
}
}