Jimb Esser

Results 60 comments of Jimb Esser

No maintainers as far as I can tell. I've (just now) pushed an update to [http-proxy-node16](https://www.npmjs.com/package/http-proxy-node16) so that it correctly links back to [my fork](https://github.com/Jimbly/http-proxy-node16) instead of this repo, if...

This affects all versions 16 and above, it's due to a low-level, non-backwards-compatible change in Node. No idea if it would have anything to do with that SSE error, though...

Thanks for the info here, it helped lead me in the right direction. Just to add to this for anyone who gets here facing similar problems, I have a workflow...

@terinjokes Can we get this PR merged? I've been using my fork in a number of projects with this fix, and all has been as good as before or better...

> Don't remove testdouble from the tests, but fill free to remove sourcemap logic that's in them. I'm not quite sure what you mean? It seems like in that test...

> UglifyJS makes no promises on the identifiers it uses when minifying. Of course! Luckily the identifiers are not included in the map, only the offsets. In general, as long...

Okay, got it. For the next version, that sounds slightly error prone, since presumably the caller would need to inform you (or know and handle themselves) whether or not the...

Spent a bunch of time looking into this, and it appears the latest [email protected] + [email protected] is applying the sourceMap mapping *twice* - if I replace `applySourceMap(file, sourceMap);` with instead...

It's seems like it can't possibly be fine. If map A maps lines 10:5 and 8:4 and map B does a (relative) map of 5:4 and 4:2, the output must...

I think `applySourceMap` always thinks it's applying a relative mapping, as it does see the old mappings, however since we're also passing the mappings into uglify-js it seems as though...