Open stephenwithav opened 8 months ago
@alan-agius4 Would you like me to take a shot at adding this functionality?
This is actually something that @AndrewKushnir was looking at sometime ago. We still had some pending design decisions, which required broader discussions with the rest of team.
Thank you for the info. I'll implement a placeholder in elisp for now.
@AndrewKushnir, I'm here to help if you want when those design decisions are made.
Command
generate
Description
Running
ng generate component users --standalone
generatesusers/users.component.{css,html,spec.ts,ts}
files.For imported or lazy-loaded routes, we can create a
users/users.routes.ts
that looks like this:...and import it with
loadChildren
inapp.routes.ts
, butng
could simplify the process.Describe the solution you'd like
ng generate component users --standalone --routes
could scaffold theusers/users.routes.ts
file for us, letting us just fill it in as we go.An alternative is
ng generate component users --standalone --routes=crud
, which generates components and route mappings for each CRUD component.ng generate component users --standalone --routes=cr
would only generates Create and Read components and mappings.Describe alternatives you've considered
yasnippets with emacs, but
ng
incorporating this functionality would make life easier.