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
.
Modules usually have just one feature or a special API folder which is exposed to the outside. So we want to have a nested structure like:
holidays: - holiday.ts - ui - ui1.ts - ui2.ts - model - holiday-model.ts - countries.ts - internal - holiday.logic.ts
In this scenario, assigned tags to holiday.ts is complicated:
holiday.ts
{ modules: { 'holidays': ['domain:holidays', 'type:feature'], 'holidays:<type>': ['domain:holidays', 'type:<type>'], } }
It would be much better, if we could
{ modules: { 'holidays': { '.': ['domain:holidays'], '.': ['domain:holidays', 'type:<type>'], } } }
The text was updated successfully, but these errors were encountered:
rainerhahnekamp
No branches or pull requests
Modules usually have just one feature or a special API folder which is exposed to the outside. So we want to have a nested structure like:
In this scenario, assigned tags to
holiday.ts
is complicated:It would be much better, if we could
The text was updated successfully, but these errors were encountered: