Tarrow added a subscriber: Lucas_Werkmeister_WMDE.
Tarrow added a comment.

To try and figure out what needs doing @Lucas_Werkmeister_WMDE helpfully showed a way to dump the dependencies:

graph = 'digraph dependencies{\n';
for (module in mw.loader.moduleRegistry) { for (depended of mw.loader.moduleRegistry[module].dependencies) { graph += `"${module}" -> "${depended}"\n`; } }
graph += '}\n';

The output of that can be seen in this paste: https://phabricator.wikimedia.org/P778

a "pretty" svg can be built using graphviz and the dot package with dot -Tsvg


TASK DETAIL
https://phabricator.wikimedia.org/T204039

EMAIL PREFERENCES
https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Tarrow
Cc: Lucas_Werkmeister_WMDE, Tarrow, Jakob_WMDE, Nandana, Mringgaard, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, D3r1ck01, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Darkdadaah, Mbch331
_______________________________________________
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs

Reply via email to