MotorHeat

Results 5 comments of MotorHeat

There is nothing to do with this issue in surplus repository. Issue is how bundlers merge source maps. I have a solution for the parcel-plugin-surplus (look to [this PR](https://github.com/tinchoz49/parcel-plugin-surplus/pull/6)). Similar...

I also initially look to `source-map` but then I realize that this library doesn't have anything relevant for Surplus case. There is method `applySourceMap`, which applies the "sub source map"...

I have played more with `applySourceMap` and it looks like @TimHambourger is totally right. The issue is that originalPositionFor returns null. The solution is to pass bias parameter to this...

Here is the the [commit ](https://github.com/MotorHeat/parcel-plugin-surplus/commit/f2421b5024cb143f1aa5eb25e7acc019f4ed3284)to parcel-plugin-surplus with a little bit hacky solution to solve the mentioned above issue. I am not sure if it should be merged but you...

Hi, I also faced with this issue (surplus compiler not always properly parses JavaScript regular expressions). Unfortunately I cannot change the RegExp because it is in 3rd party library. If...