Results 62 comments of Roy Riojas

No problem man, Sadly not all transforms play nice with source maps so for those cases I would still suggest to consider some kind of workaround. Maybe an option or...

@millermedeiros @Flet, in case is still needed I just made https://www.npmjs.com/package/esformatter-ignore I needed to prevent some bugs that were stopping me from using the latest version of esformatter, might be...

:+1: happy to merge, help or document :), I guess #6 is an issue that most of us have faced at some point, probably the most important thing a library...

hi @ScriptedAlchemy and @sokra Just wanted to confirm if it is actually possible to load dynamically federated modules from a dynamically loaded remote. It seems it is possible. I will...

Hi @ScriptedAlchemy based on all that I've found I came with this for dynamic loading modules from remotes (without hardcoding them in the webpack config) https://github.com/royriojas/mfe-webpack-demo/tree/attempt_dynamic But here is something...

This is the error, if @sokra or @ScriptedAlchemy or anybody knows why does this error happen. ``` react.development.js:1465 Uncaught Error: Invalid hook call. Hooks can only be called inside of...

@ScriptedAlchemy I don't want to load two versions of react. I actually want to share the same `React` version across the board. I will check the webpack config, but I...

Thanks for your feedback @ScriptedAlchemy. Using a shared singleton fixed all the issues I had. Thank u. 👍 https://github.com/royriojas/mfe-webpack-demo/commit/4711f371dfc8a69f47b69c57070158f1a3405c9e#diff-3d864b4f5a6e000cbf1420a6b94dd5ce3688b24b01a3cff1ecb817e8e5f44708R46

@ScriptedAlchemy Old example forked from https://github.com/mizx/mfe-webpack-demo which was using the beta version

```tsx const factory = await container.get(moduleToLoad); // where moduleToLoad is the path to the module (including a `/.` if I recall correctly const Module = factory(); Module.default(/* pass props here*/);...