Renée

Results 465 comments of Renée

ok, tests were failing for good reason, i forgot to run them locally first…

i think it's OK to model it as always a URI … technically you could make a request that has some arbitrary data in there, but i don't think anyone...

I work on browserify some days each week now, would be happy to help out w/ this package as part of that too!

thanks! yeah, fine with keeping the call for maintainers—more folks is always better :)

@Gozala Since this repo is on your personal account, I can't add any maintainers myself. Would you mind transferring it to the browserify organisation? Many other core module shims are...

Is this fixed in flow since https://github.com/facebook/flow/commit/f942d9676d174d3469ed532770934063518ce4f5? Shipping tests and examples with packages is handy if users are working offline or if they need to debug something.

@blackgate I'm having trouble reproducing this issue with the latest browserify/babelify/brfs versions. ```js //script.js const fs = require('fs') fs.readFile(__filename, 'utf8', (err, res) => { if (err) console.error(err) alert(res) }) ```...

I did find and fix another issue here: https://github.com/browserify/static-module/pull/44 But I believe it's different (it doesn't involve the source contents, only mappings)

I've never used NODE_PATH and haven't got a clue, but it sounds like people who do use it generally expect it to apply to transforms too, so we should probably...

Interesting! I think (hunch not data) that it's more common to have real node_modules in subfolders though, rather than individual files, especially in monorepo like structures. IMHO a compatible and...