generated from cortinico/kotlin-gradle-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 18
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
💡 Describe the solution you'd like
Let's say that we have 3 modules:
- moduleA - depends on moduleB
- moduleB - depends on nothing
- moduleC - depends on nothing
The graph generated by module-graph will only show moduleA and moduleB. moduleC won't be shown.
It might seem that moduleC is an unnecessary module, but there are situations where this a valid case and there are multiple such independent modules in the project (especially in monorepo environment).
Current behavior
%%{
init: {
'theme': 'neutral'
}
}%%
graph LR
:moduleA --> :moduleB
Desired behavior
%%{
init: {
'theme': 'neutral'
}
}%%
graph LR
:moduleA --> :moduleB
:moduleC
🤚 Do you want to develop this feature yourself?
- Yes
- No
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request