Rahul Gupta

Results 188 comments of Rahul Gupta

The error still occurs in 1.51.0!!!

Should we not align ourselves with `fs.rm`, effectively back porting it to earlier editions of node? Unless there is a strong reason for introducing a different behaviour?

From what I recall, this default behavior was chosen because of the `rmdir -r` choice made by nodejs. In the light of present changes to node's api, I would think...

This issue has come back in 0.55.0 . Please reopen! Error message looks like this ``` DevTools failed to load source map: Could not load content for chrome-extension://okbeiaglphddelgfpldbkabgoilcggjk/node_modules/my-app/dist/index.min.js.map: System error:...

I am not well versed in sourcemaps but for a little bit of use with Rollup, may I suggest you look at the [magic-string](https://www.npmjs.com/package/magic-string) library. Maybe, it might be helpful...

Would it be unreasonable to support this (even if it uses `eval`) under a flag, for those who want it? Here is my use case: I am trying to monkey...

I am looking to add support for esm version of node built-ins (which are not available on the client/browser side of nwjs). For a pattern example, see the `fs` file...

I understand! However, given the maintenance burden of wrapping the entire node API (and it is unlikely that nwjs developers are themselves interested in fixing this), it looks like I...

> For what it is worth, an ESM wrapper is not that hard to do / not that much maintenance, OMG!!! Maybe not for you, but for lesser mortals that...

Thanks!!!! After agonizing over it over the weekend, that is what I ended up implementing! I was hoping to do this with a virtual file system at application but the...