Builds a dependency tree from webpack stats
├── [email protected]
│ node_modules/react
├── [email protected]
│ node_modules/classnames
├── [email protected]
│ node_modules/immutable
├── [email protected]
│ node_modules/lodash
├── [email protected]
│ node_modules/font-awesome
├── [email protected]
│ node_modules/datatables
├── [email protected]
│ node_modules/style-loader
├── [email protected]
│ node_modules/css-loader
├─┬ [email protected]
│ │ node_modules/webpack
│ └─┬ [email protected]
│ │ node_modules/webpack/node_modules/node-libs-browser
│ └── [email protected]
│ node_modules/webpack/node_modules/node-libs-browser/node_modules/process
├── [email protected]
│ node_modules/react-bootstrap
└── [email protected]
node_modules/jquery
Builds a dependency tree from webpack stats.
opts
can be:
opts.packageDescriptors
: List of package descriptor files to look for in package directories. Defaults to['package.json', 'bower.json', 'component.json']
Converts a dependency tree to an ASCII hierarchy representation.
opts
can be:
opts.pretty
: Add colors and styles to the outputopts.fullPaths
: Display full paths instead of relative paths.