module-deps icon indicating copy to clipboard operation
module-deps copied to clipboard

walk the dependency graph to generate a stream of json output

Results 32 module-deps issues
Sort by recently updated
recently updated
newest added

I'm not sure if the problem is here (or in a subpackage, like `detective`, but I noticed this library tripping over semi-recent ES syntax. I'm not sure what the best...

add npmignore file so that test folder is not published in package

Adds node-style experimental ES modules support. pass `esm: true` to interpret `.mjs` files as ES modules. ES modules get a `rec.esm` property so that later parts in the browserify pipeline...

This will make everyone's life slightly better by making the module distributed through npm a bit smaller. And it will save users of Flow some grief, because of facebook/flow#5898.

I'm trying to retrieve the file where an error occurred and all I'm able to catch is a standard JavaScript error with a message but not file. For example: >...

The documentation is unclear about this point: > If the transform is a function, it should take the file name as an argument Then, the example shows a second parameters...

[xtend](https://github.com/Raynos/xtend) can easily be replaced with [Object.assign](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) This reduce the dependencies and possible also avoid duplicated versions where some package don't use the same version range for the xtend package...

So this just caused me major headache: if you have `global-style` active in your `npmrc`, `browserify` won't find dependencies of your dependencies. It would be very helpful if `browserify` were...

Hi, Is there any reason why you dont pass paths in loadTransforms? I had some transforms installed in a separate directory referenced by NODE_PATH. node find them correctly but browserify...

See https://stackoverflow.com/q/51347558/1198896 for the detailed background, but basically, given the following minimal testcase: `test.js`: ```js require('./test2.js'); ``` `test2.js`: (empty) `test3.js`: ```js var resolve = require('resolve'), mdeps = require('module-deps'), through2 =...