Edward Kimmel

Results 15 comments of Edward Kimmel

I have the same problem. For compatibility with osm2pgsql imports, being able to choose between NULL and empty string would be nice.

If I just do `mason install ragel 6.9`, it does get further but has issues with code that just doesn't compile (narrowing issues, possibly legacy use of ostream) Changing harfbuzz...

`MASON_PLATFORM=android MASON_ANDROID_ABI=arm-v7 ./mason install harfbuzz 1.4.4-ft` That's the only command I need to run for this to happen. Harfbuzz has a requirement on ragel 6.9, and the script for ragel...

Protobuf on Android was one of those problems where finding what was wrong was 90% of the work. ``` if [ ${MASON_PLATFORM} = 'android' ]; then # protobuf does not...

After patching index.web.js, the bundle builds but cannot be ran. Adding some console statements to my bundle, it appears that the default export of AnimatedNode is coming up null rather...

Seeing this as well. ``` Type 'ComponentClass' is not assignable to type 'ReactNode | ((slideData: SlideData) => ReactNode)'. ```

Pinch zooming (On mobile) on the map at http://leafletjs.com/ frequently causes the problem. It seems to happen more when zoomed in further (Not the max zoom bounce effect).

Android, mobile chrome. Seems to happen if you are slow to pick up your fingers: https://user-images.githubusercontent.com/26493779/181134740-3b5e27f0-61c4-4c33-a5dd-9971c541aa8b.mp4

You should look into rendering in isolated contexts, either with Node's built in VM or a library like VM2 (https://github.com/patriksimek/vm2) That will let you render multiple requests concurrently without any...

> The `unmountComponentAtNode` export probably also needs rethinking for the new root API. ReactDom does warn/error when that is called on a container used by createRoot. Someone using legacy mode...