lerna-dependency-graph
v1.1.0
Published
Outputs dependencies in a Lerna monorepo using Graphviz.
Downloads
2,520
Readme
lerna-dependency-graph
Outputs dependencies in a Lerna monorepo using Graphviz.
Graph of Pug (template engine).
Usage
Install Graphviz and add the bin directory in your PATH.
Then add this package to your project:
npm i -D lerna-dependency-graph
Add a script entry in your package.json:
"scripts": {
"graph": "lerna-dependency-graph"
},
Execute:
npm run graph [-- options]
You could also give it a try without installing it:
npx lerna-dependency-graph [options]
Options
The most important ones are:
-f <format>
/--outputFormat <format>
Outputs the given format.
If not given, outputs plain DOT.
List of available output formats-o <path>
/--outputPath <path>
File to write into.
If not given, outputs on stdout.
See all options with -h
.