Paweł Gulbinowicz

Results 107 comments of Paweł Gulbinowicz

Ok, how about assigning `ChunkManager` to `global` in your entry file before the app runs, and then using `global.Chunkmanager` in `remotes`?

Yes this is expected. Based on my knowledge it's not possible without some magic trickery inside Re.Pack and generated code. To me the cost and shakiness of such support is...

Looks like the example from the link is missing some files/implementation. Aside from that, Re.Pack has custom Webpack HMR client. The default one doesn't work for React Native. The main...

Hey @s-pace, thank for reaching out but I'm not longer using Docusaurus for the website. I've switched to Docsify.

Sure would be awesome! 👍 Let me know if you need anything from me

Doesn't `process.stdout.columns` and `process.stdout.rows` work for you? `process.stdout` is a TTY stream so you should be able to get width (`columns`) and height (`rows`) of the terminal (https://nodejs.org/api/tty.html)

@acoates-ms The idea to make this globals initialisation a one-time logic was added here to (like you said) prevent it from redoing the work and prevent any potential edge-cases, that...

@TheSavior @cpojer Does the proposed changes look good from the Facebook standpoint, are we good to go with making the PR?

Updated the description with __Detailed plan__ cc: @TheSavior

@ejanzer Thanks for the feedback 👍 Like you said, one of the differences between proposed changes and what's currently in RN core is the ability to load from string, which...