We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ng g @angular-architects/ddd:domain IAM
Generates wrong naming: export class IamDomainModule {}
export class IamDomainModule {}
This will generate the wrong naming within the feature:
@NgModule({ imports: [CommonModule, IAMDomainModule], // <-- should be IamDomainModule declarations: [UserComponent], exports: [UserComponent], }) export class IamFeatureUserModule {}
I suppose this is working as intended. I would have assumed that the naming would be as is on the creation of the domain.
The text was updated successfully, but these errors were encountered:
Thanks for this. I can confirm this issue.
Sorry, something went wrong.
No branches or pull requests
ng g @angular-architects/ddd:domain IAM
Generates wrong naming:
export class IamDomainModule {}
This will generate the wrong naming within the feature:
I suppose this is working as intended. I would have assumed that the naming would be as is on the creation of the domain.
The text was updated successfully, but these errors were encountered: