TIL, 2021-11-29, Some Schematics stuff
Minor stuff
- Tracing routing in Angular: Reference
RouterModule.forRoot(routes, {
enableTracing: true, /* <-- Set this to true */
}),
- Schematic commands Reference
- Reading source: Schematic source code
ng g component modules/module-directory/views/hello \
--project our-project --module modules/module-directory \
--change-detection OnPush \
--selector our-project-selector \
--style scss \
--display-block