Jolyn
Jolyn
Ohh I see now. I misread your earlier example babelrc: ```json { "pipelines": [ "@joeldenning/icu:icu" ] } ``` I was thinking that icu would be a babel plugin itself. And...
I’m okay with either approach. If it’s the config approach, I think one simplification could be to not specify pipelines, extractors, and exporters as config values in the babelrc, but...
This is something that people have done before, and I hope to create an example showing it at some point in the future. If you join [our slack workspace](https://join.slack.com/t/single-spa/shared_invite/enQtODAwNTIyMzc4OTE1LWUxMTUwY2M1MTY0ZGMzOTUzMGNkMzI1NzRiYzYwOWM1MTEzZDM1NDAyNWM3ZmViOTAzZThkMDcwMWZmNTFmMWQ) there...
Angular's Ivy Compiler forbids runtime sharing of dependencies, which is why this example does not use it. If you use View Engine, you can do runtime sharing. More info about...
I took a quick look at this and didn't make it very far. Angular isn't my strength. @arturovt do you have time to look at this?
I no longer spend much time helping maintain single-spa-angular, leaving it for others to maintain. There are a few people helping maintain it - I am not sure when they'll...
One thing to note is that it might be best to reopen this issue on single-spa-angular instead of this example repo - the single-spa-angular repo is where we track angular-related...
Angular component styles are one option for solving this. https://angular.io/guide/component-styles
Failing to load webpack chunks is almost always related to [webpack public path](https://webpack.js.org/guides/public-path/#root). For single-spa + systemjs to work, you need to [dynamically set the public path, from within the...
`--deploy-url` does not dynamically set the public path ("on the fly"). Nor does modifying the webpack config. The only way to dynamically set the public path is described in the...