Paweł Gulbinowicz

Results 107 comments of Paweł Gulbinowicz

This looks like a bug in Re.Pack, but I'm going to investigate that to be sure.

> I understand that I can code a Remote component -> bundle remote chunk has name is remote.chunk.bundle -> upload this chunk to my server -> and in my other...

@andreszuluaga-wolox Can you provide example or a repro project?

I see you're using Module Federation, so I want to first ask if you have any specific reason to use Module Federation as it's not officially supported yet. Here are...

`Cannot parse compiler worker message` is not strictly an issue that would affect anything. `LoggerPlugin` is to capture logs from Webpack and other plugins (which are [using Webpack's logging](https://webpack.js.org/api/logging/)), but...

Based on the docs you could pass `outputTarget`: ```js outputTarget: (...args) => { console.log({ timestamp: Date.now(), issuer: 'speed-measure-webpack-plugin', type: 'info', message: args, }); } ``` Have you tried it?

Any errors in terminal, logcat or Console.app? Also are you trying to run host app or individual apps?

Can you post configuration for `webpack.container.ModuleFederationPlugin`s and a config for `ChunkManager.configure`?

Can you provide more information? Some example or repro project?

The problem in #151 is likely caused by duplicated `react-native-reanimated` dependency - you need to somehow (depends on your setup) ensure there's only single `react-native-reanimated`. If you're using Module Federation,...