Colum Ferry

Results 173 comments of Colum Ferry

Can you provide a repository with what you have so far so I can take a look? It also might help me understand the problem better. I'm not entirely sure...

I need to see your `NavigationModule` We view Federated apps as one single app, so there should only be one router. It's set up as a singleton across all places....

@kenatwex Can you take a look at my repo, where I have tried to create an example based on what you've said, to determine what the key differences are? This...

You don't need dynamic federation in your case. You just need a standard `import`

In your `module-federation.config.js` add the following below the `remotes: [...]` array ```ts shared: (libraryName, libraryConfig) => { if(libraryName === 'ag-grid-enterprise') { return {...libraryConfig, eager: true}; } } ``` This is...

With Angular, buildable libs has an overhead in the linking stage of the webpack build for the application. This reduces the potential time savings when using buildable libs with Angular...

It has been investigated pretty thoroughly. We recommend either sticking to using non-buildable libs or using Module Federation. As mentioned before we have a video that discusses this: https://www.youtube.com/watch?v=JkcaGzhRjkc You...

The build of libs will not be cached no, however, the testing and linting _will_ still be cached. Your app will be, but as you mentioned, it will be invalidated...

When working with buildable libs you need to make sure that the buildLibsFromSource value in the development configuration of your build is set to true, and then in your production...

@B1Z1 can you share the repo with me?