Skip to content
New issue

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

[Bug] fix "Dasherized" feature generated with directory specified #46

Open
benpsnyder opened this issue Jan 13, 2021 · 1 comment
Open

Comments

@benpsnyder
Copy link

benpsnyder commented Jan 13, 2021

nx generate @angular-architects/ddd:domain --directory='' --addApp --appDirectory='domain' --ngrx --no-interactive --name='core' 

nx generate @angular-architects/ddd:feature --domain=core --app='core' --appDirectory='domain' --domainDirectory='' --lazy --ngrx --no-prefix --no-interactive --directory='cdm' --name='account' --entity='account'

image

Change import { CdmAccountComponent } from './cdm-account.component'; to import { CdmAccountComponent } from './account.component';

@benpsnyder
Copy link
Author

benpsnyder commented Jan 13, 2021

Change from

.
├── +state
│   └── cdm-account
│       ├── cdm-account.actions.ts
│       ├── cdm-account.effects.ts
│       ├── cdm-account.reducer.ts
│       └── cdm-account.selectors.ts
├── application
│   └── account.facade.ts
├── core-domain.module.ts
├── entities
│   └── cdm-account.ts
└── infrastructure
    └── cdm-account.data.service.ts

to

.
├── +state
│   └── cdm-account
│       ├── account.actions.ts
│       ├── account.effects.ts
│       ├── account.reducer.ts
│       └── account.selectors.ts
├── application
│   └── cdm-account.facade.ts
├── core-domain.module.ts
├── entities
│   └── cdm-account.ts
└── infrastructure
    └── cdm-account.data.service.ts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants