Renée
Renée
that's…very strange, `.apply()` should be available pretty much anywhere. can you share the exact error message and the browser versions that they're happening on?
this seems fine, but I don't think it would help sheetify, as brfs can only statically evaluate calls like this: ```js fs.stat('./filename') fs.stat(path.join(__dirname, 'xyz.js') ``` and not variable arguments (which...
I don't think we have a way to do this right now, but i'd be open to adding info properties like `.specifier` ('unknown') and `.source` ('module-deps-test/main.js') or something to resolution...
no we basically just need some property assignments here in the `if (!file)` branch: https://github.com/browserify/module-deps/blob/45ad7b641277a3a702fccab70b2b3e19e9d2cc3d/index.js#L180-L185
addressed in 8a2ee055596d7877a34feb2d4bbadd4717cf9f1d. thanks!
@dy fetch()'s return value doesn't have a .text() method, so with `async`/`await` you have to do something like ```js var resp = await fetch(`posts/${post}.md`) var content = await resp.text() ```
I like this design, it fits in well with other browserify APIs. What's the reason for readFile and readFileSync getting separate options? i'd expect that you would always want to...
It's the `row.options` property on on the input object: https://github.com/browserify/module-deps#input-objects Typically browserify passes it in from its `.transform()` method, which more or less does: ```js function transform(transformPathOrFn, transformOptions) { mdeps.write({...
I'm not sure what that question is about exactly. If you pass URLs to `path` you will get bad behaviour because the path module only works with file paths, so...
This is fixed in 1.0.0. I would be happy to do another 0.x release but unfortunately that will still not help for webpack because node-libs-browser is pinned to 0.0.1 and...