rollup-plugin-graph
Generates module dependencies graph, using the DOT language. To actually draw images, you will need the graphviz
toolbox.
In your rollup.config.js
:
let graph = ;let graphOptions = prune: true; moduleexports = /* ... */ plugins: ;
In your terminal:
rollup -c | dot -Tpng > graph.png
Options
prune
(bool) Whether to prune the resulting graph, leaving only cyclic dependencies. This makes the graph strongly connected. Examples: pruned, not prunedexclude
(string or regexp) Specified the module ID pattern to be excluded from the graph.