Slawek Kolodziej
Slawek Kolodziej
Yeah, I saw that. I’ll try to find some time this week.
@adamdbradley just to clarify, did you close this MR intentionally, or was it closed by mistake automatically, when you merged #235?
I played with integrating tag assistant here: https://github.com/slawekkolodziej/partytown/tree/tag-assistant I wrote a document with what I've found: https://github.com/slawekkolodziej/partytown/blob/tag-assistant/src/lib/web-worker/tag-assistant.md The implementation is not finished yet. It's rather at early stage / POC....
Hey @graysonhicks yes, I moved that file recently. From your screenshots I can tell that you are using legacy Tag Assistant plugin. My code works with Tag Assistant Companion (https://chrome.google.com/webstore/detail/tag-assistant-companion/jmekfmbnaedfebfnmakmokmlfpblbfdm)....
@dphang I can try to find some time to contribute too! I'll send you an email to the address above too
I looked at https://github.com/angular-architects/module-federation-plugin to see what changes are needed in order to get this working. 1. This is clearly a bug, it's super easy to fix: https://github.com/angular-architects/module-federation-plugin/pull/224/files 2. We...
It wasn't anything special, I run esbuild with the following options: ``` entryPoints: ['react'], bundle: true, format: 'esm', outdir: 'out', ``` However, I noticed that it only takes care of...
I looked at esm.sh source code and I gave a shot to their [esm-node-services](https://github.com/ije/esm.sh/tree/main/packages/esm-node-services) package. It seems to be adding named exports properly now. However, react demo breaks, I'm looking...
I updated the code, it supports CJS now. React is properly shared between host and remote. Both apps are using hooks too. Main logic can be found in `native-federation-react/build/build-cjs.ts`. I...
Just curious, are you trying to use this within react application? I may wrap the code I created in a react component sometime over the next week or two and...