A gulp plugin for visualisation CommonJS, AMD, or ES6 module dependencies. For more information check the original dependo package.
var dependo = require('gulp-dependo');
gulp.task('visualize dependencies', function(cb) {
dependo({targetPath: './path-to-the-package', fileName: 'report.html', outputPath: '.', dependoOptions: {
// passed to Dependo
// default format is 'amd'
// remaining options default to Dependo defaults
} }, cb);
});
MIT