lerna-dependency-graph

Outputs dependencies in a Lerna monorepo using Graphviz.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
lerna-dependency-graph
1.1.03 years ago4 years agoMinified + gzip package size for lerna-dependency-graph in KB

Readme

lerna-dependency-graph
Outputs dependencies in a Lerna monorepo using Graphviz.
pug
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.