Is there such an option to create a Module that is linked to a component, which does not have a css file upon creation?
e.g.
The default way of doing this for me so far is the following:
ng generate module name
/
ng generate component name
And I get the basic structure of a component:
name.component.css
name.component.html
name.component.spec.ts
name.component.ts
name.module.ts
And I want to create the following with only ONE query:
name.component.html
name.component.spec.ts
name.component.ts
name.module.ts
e.g. something like:
ng g m name + c name - css
... you get the idea.
Is this possible, and if yes, how?