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
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).
💡 Describe the solution you'd like
Let's say that we have 3 modules:
The graph generated by
module-graphwill only showmoduleAandmoduleB.moduleCwon't be shown.It might seem that
moduleCis 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 --> :moduleBDesired behavior
%%{ init: { 'theme': 'neutral' } }%% graph LR :moduleA --> :moduleB :moduleC🤚 Do you want to develop this feature yourself?