generated from cortinico/kotlin-gradle-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
enhancementNew feature or requestNew feature or request
Description
⚠️ Is your feature request related to a problem? Please describe
when I use your module graph in my modular multiplatform app, I can't see my sub-module (common, android, ios) and their relations with other sub-modules and just see parent module relations.
💡 Describe the solution you'd like
I get this graph :
%%{
init: {
'theme': 'neutral'
}
}%%
graph TB
:composeApp --> :x
:composeApp --> :y
but I want to create graph like this :
%%{
init: {
'theme': 'neutral'
}
}%%
graph TB
:android --> :x:android
:common --> :x:common
:ios --> :x:ios
:ios --> :common
:android --> :common
subgraph composeApp
:common
:android
:ios
end
:x:android --> :x:common
:x:ios --> :x:common
subgraph module x
:x:android
:x:common
:x:ios
end
:y:android --> :y:common
:y:ios --> :y:common
:common --> :y:common
subgraph module y
:y:android
:y:common
:y:ios
end
🤚 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