是否有这样的选项来创建链接到组件的模块,该组件在创建时没有css文件?
例如
到目前为止,对我而言,默认的操作方式如下:
ng generate module name
/
ng generate component name
我得到了组件的基本结构:
name.component.css
name.component.html
name.component.spec.ts
name.component.ts
name.module.ts
我想只用一个查询创建以下内容:
name.component.html
name.component.spec.ts
name.component.ts
name.module.ts
例如:
ng g m name + c name - css ...你明白了。
这可能吗?如果是,怎么办?