You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
⚠️ 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.
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 --> :ybut 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?