Paweł Gulbinowicz

Results 107 comments of Paweł Gulbinowicz

The Module Federation support is still in early stages, but the core functionality is working in development mode - production mode might work might not. https://github.com/zamotany/module-federation-repack

The problem with chunk ids is more complex than what's put into `__CHUNKS__` - that easy to fix. The bigger problem is that with `chunkIds` other than `named`, you end...

Yes, you probably want to include some dependencies to be shared like React and React Native. You can configure how you want to include dependencies inside chunks: https://webpack.js.org/plugins/split-chunks-plugin/#optimizationsplitchunks

@TNorth22 I'll take a lot at this tomorrow. In the meantime, if it's possible for you, could you create a repro repository, which I could use for testing?

@TNorth22 I cannot reproduce your issue. The config looks file apart from duplicated `...config.module.rules`. The stack trace is pointing to a Webpack plugin for creating source maps, so you can...

@TNorth22 setting `sourceMap` to `false` should not have any effect on loaders (and typescript compilation), which makes me think that maybe the underlying problem is with `ts-loader`/`typescript`. 1. Can you...

@TNorth22 @rebirthtobi Can you add `"resolution": { "webpack": "4.39.1" }` to your `package.json`, do `yarn install` and check if the error is still occurring? Can you also try with `"resolution":...

Ok, so this issue looks like it's caused by duplicated `webpack` depednency. I need a volunteer to: 1. Remove `resolutions` from `package.json` 2. `yarn install` 3. `yarn list --pattern webpack`...