我正在使用代码共享结构将Angular应用迁移到NativeScript。
要迁移Angular模块,我正在使用:
ng g migrate-module --name=nameModule
但是此命令假定模块位于文件夹/ app下,并且为了更好地组织项目,我将模块放在文件夹app / modules中。
有没有一种方法可以指示模块的路径?我尝试过:
ng g migrate-module --name=modules/nameModule
但是不起作用
答案 0 :(得分:1)
对于具有非标准文件名的模块,可以使用--module-path参数
来提供模块的完整路径。示例:
ng g migrate-module --name=nameModule --module-path=modules/myModule-md.ts
参考: https://docs.nativescript.org/angular/code-sharing/migrating-a-web-project
答案 1 :(得分:0)
这是实际命令的样子。我的模块位于
src/app/features/scheduler/scheduler.module.ts
ng g migrate-module --name=scheduler --module-path=features/scheduler/scheduler.module.ts