node-dependency-tree icon indicating copy to clipboard operation
node-dependency-tree copied to clipboard

Get the dependency tree of a module

Results 35 node-dependency-tree issues
Sort by recently updated
recently updated
newest added

Bumps the npm_and_yarn group with 1 update: [webpack](https://github.com/webpack/webpack). Updates `webpack` from 5.91.0 to 5.94.0 Release notes Sourced from webpack's releases. v5.94.0 Bug Fixes Added runtime condition for harmony reexport checked...

dependencies
javascript

The current function recursively traverses the dependency tree to find all dependencies. However, when the dependency graph is very deep and complex, traversing the entire graph can lead to performance...

Hi, First of all, thank you for this library, which allows me to load vendors by entry point on rollUp. However, I don't understand why [Swiper](https://swiperjs.com/) modules are injected into...

Hello - I'm curious if you'd be interested in a proposal to support filtering _before_ resolving with file-cabinet. What I'm trying to accomplish is to prevent certain dependencies from being...

I have an executable Node.js script (`www`) with a shebang (`#!`) which includes `foo.js` which in turn includes `bar.js`: `www`: ``` #!/usr/bin/env node const foo = require("./foo"); ``` `foo.js`: ```...