Mike
Mike
Some reference points - https://github.com/gocolly/colly/issues/221 - https://github.com/PuerkitoBio/goquery/issues/139 - https://github.com/golang/go/issues/16318
Not sure if this will help you but... We have this compiling on the server with webpack and had to make sure to exclude the correct modules from externals e.g....
Nope just aliasing in the webpack config as usual. ``` config.resolve.alias = { react: 'preact-compat', 'react-dom': 'preact-compat' } ``` Because webpack picks up the alias and is processing react imports...
Sounds good, I think it's more intuitive to do a $set instead of a replace by default. I guess the main issue is that it's a breaking change so should...
The original example is a little simplified but given that document had more than just the property `height`, without the change you would have a document left with just height...
Hey @jdylanmc sorry to hear you've hit some issues. I don't have access to a windows machine, but did try on mac (you mentioned it being broken there too) without...
Thanks for the report. This extension hasn't changed in a long time, and I can't reproduce it with my install in latest vscode. Do you have any extensions related to...
@jaydenseric when contributing a [language extension](https://code.visualstudio.com/api/references/contribution-points#contributes.languages) you need to provide the explicit extensions from what I've tested (I tried pattern matching to begin with). What you're talking about is something...
@Ronsku Thanks for the details! Currently I've only added / tested support for JSON (mentioned in the README). Full multipart support shouldn't be too hard to add but I don't...
@shankiesan I can see the angle you're coming from but I'm not totally sure about this one. As we always dispatch a [FSA](https://github.com/acdlite/flux-standard-action) you can add middleware to inspect all...