├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── biome.json ├── examples ├── basic │ ├── app │ │ ├── components │ │ │ └── counter.tsx │ │ └── routes │ │ │ ├── _public.$ │ │ │ └── route.tsx │ │ │ ├── _public.layout │ │ │ └── route.tsx │ │ │ ├── _public.slug.$slug │ │ │ └── route.tsx │ │ │ ├── _public │ │ │ └── route.tsx │ │ │ └── weather.$ │ │ │ ├── route.tsx │ │ │ └── temperature-switch.tsx │ ├── package.json │ ├── server.mts │ ├── ssr-server.mts │ └── tsconfig.json └── consumer │ ├── app │ ├── components │ │ └── counter.tsx │ └── routes │ │ ├── _public._index │ │ └── route.tsx │ │ ├── _public.about.$slug │ │ └── route.tsx │ │ ├── _public.about │ │ └── route.tsx │ │ └── _public │ │ └── route.tsx │ ├── package.json │ ├── server.mts │ ├── ssr-server.mts │ ├── tsconfig.json │ └── webpack.config.cjs ├── fixture ├── marketing │ ├── app │ │ ├── components │ │ │ └── ui │ │ │ │ ├── avatar.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── input.tsx │ │ │ │ └── separator.tsx │ │ ├── lib │ │ │ └── utils.ts │ │ ├── remotes.tsx │ │ └── routes │ │ │ ├── _public._index │ │ │ ├── products.tsx │ │ │ └── route.tsx │ │ │ ├── _public.product.$handle │ │ │ ├── actions.tsx │ │ │ ├── client.tsx │ │ │ ├── form.tsx │ │ │ ├── product.tsx │ │ │ ├── reviews.tsx │ │ │ └── route.tsx │ │ │ └── _public │ │ │ ├── route.tsx │ │ │ └── style.css │ ├── components.json │ ├── modules.d.ts │ ├── package.json │ ├── postcss.config.cjs │ ├── remotes.cjs │ ├── server.mts │ ├── ssr-server.mts │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── webpack.config.cjs └── shell │ ├── app │ ├── components │ │ └── ui │ │ │ └── button.tsx │ ├── lib │ │ └── utils.ts │ ├── remotes.tsx │ └── routes │ │ ├── _public.$ │ │ └── route.tsx │ │ ├── _public._index │ │ └── route.tsx │ │ ├── _public.product.$handle │ │ └── route.tsx │ │ ├── _public │ │ ├── client.tsx │ │ ├── header.tsx │ │ ├── route.tsx │ │ └── style.css │ │ └── api.shell │ │ └── route.tsx │ ├── components.json │ ├── modules.d.ts │ ├── package.json │ ├── postcss.config.cjs │ ├── remotes.cjs │ ├── server.mts │ ├── ssr-server.mts │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── webpack.config.cjs ├── framework ├── bin │ └── remix.cjs ├── cli │ └── build.mjs ├── entry │ ├── browser.tsx │ ├── empty.tsx │ ├── server.tsx │ └── ssr.tsx ├── lib │ ├── framework.browser.tsx │ ├── framework.client.internal.tsx │ ├── framework.client.tsx │ ├── framework.runtime.client.ts │ ├── framework.runtime.server.ts │ ├── framework.server.tsx │ ├── framework.ssr.tsx │ ├── framework.tsx │ ├── framework.webpack.ts │ ├── react.client.browser.tsx │ ├── react.client.node.tsx │ ├── react.server.browser.tsx │ ├── react.server.node.tsx │ ├── utils.ts │ ├── webpack.federation-runtime-plugin.ts │ └── webpack.plugins.ts ├── package.json ├── server-only.js ├── tsconfig.json └── tsconfig.lib.json ├── package.json ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist/ 3 | node_modules/ -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/biome.json -------------------------------------------------------------------------------- /examples/basic/app/components/counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/basic/app/components/counter.tsx -------------------------------------------------------------------------------- /examples/basic/app/routes/_public.$/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/basic/app/routes/_public.$/route.tsx -------------------------------------------------------------------------------- /examples/basic/app/routes/_public.layout/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/basic/app/routes/_public.layout/route.tsx -------------------------------------------------------------------------------- /examples/basic/app/routes/_public.slug.$slug/route.tsx: -------------------------------------------------------------------------------- 1 | export function Component() { 2 | return

Hello Slug

; 3 | } 4 | -------------------------------------------------------------------------------- /examples/basic/app/routes/_public/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/basic/app/routes/_public/route.tsx -------------------------------------------------------------------------------- /examples/basic/app/routes/weather.$/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/basic/app/routes/weather.$/route.tsx -------------------------------------------------------------------------------- /examples/basic/app/routes/weather.$/temperature-switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/basic/app/routes/weather.$/temperature-switch.tsx -------------------------------------------------------------------------------- /examples/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/basic/package.json -------------------------------------------------------------------------------- /examples/basic/server.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/basic/server.mts -------------------------------------------------------------------------------- /examples/basic/ssr-server.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/basic/ssr-server.mts -------------------------------------------------------------------------------- /examples/basic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/basic/tsconfig.json -------------------------------------------------------------------------------- /examples/consumer/app/components/counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/consumer/app/components/counter.tsx -------------------------------------------------------------------------------- /examples/consumer/app/routes/_public._index/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/consumer/app/routes/_public._index/route.tsx -------------------------------------------------------------------------------- /examples/consumer/app/routes/_public.about.$slug/route.tsx: -------------------------------------------------------------------------------- 1 | export function Component() { 2 | return

Hello About Slug

; 3 | } 4 | -------------------------------------------------------------------------------- /examples/consumer/app/routes/_public.about/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/consumer/app/routes/_public.about/route.tsx -------------------------------------------------------------------------------- /examples/consumer/app/routes/_public/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/consumer/app/routes/_public/route.tsx -------------------------------------------------------------------------------- /examples/consumer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/consumer/package.json -------------------------------------------------------------------------------- /examples/consumer/server.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/consumer/server.mts -------------------------------------------------------------------------------- /examples/consumer/ssr-server.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/consumer/ssr-server.mts -------------------------------------------------------------------------------- /examples/consumer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/consumer/tsconfig.json -------------------------------------------------------------------------------- /examples/consumer/webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/examples/consumer/webpack.config.cjs -------------------------------------------------------------------------------- /fixture/marketing/app/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/components/ui/avatar.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/components/ui/button.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/components/ui/card.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/components/ui/input.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/components/ui/separator.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/lib/utils.ts -------------------------------------------------------------------------------- /fixture/marketing/app/remotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/remotes.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/routes/_public._index/products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/routes/_public._index/products.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/routes/_public._index/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/routes/_public._index/route.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/routes/_public.product.$handle/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/routes/_public.product.$handle/actions.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/routes/_public.product.$handle/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/routes/_public.product.$handle/client.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/routes/_public.product.$handle/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/routes/_public.product.$handle/form.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/routes/_public.product.$handle/product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/routes/_public.product.$handle/product.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/routes/_public.product.$handle/reviews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/routes/_public.product.$handle/reviews.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/routes/_public.product.$handle/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/routes/_public.product.$handle/route.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/routes/_public/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/routes/_public/route.tsx -------------------------------------------------------------------------------- /fixture/marketing/app/routes/_public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/app/routes/_public/style.css -------------------------------------------------------------------------------- /fixture/marketing/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/components.json -------------------------------------------------------------------------------- /fixture/marketing/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/modules.d.ts -------------------------------------------------------------------------------- /fixture/marketing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/package.json -------------------------------------------------------------------------------- /fixture/marketing/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/postcss.config.cjs -------------------------------------------------------------------------------- /fixture/marketing/remotes.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/remotes.cjs -------------------------------------------------------------------------------- /fixture/marketing/server.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/server.mts -------------------------------------------------------------------------------- /fixture/marketing/ssr-server.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/ssr-server.mts -------------------------------------------------------------------------------- /fixture/marketing/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/tailwind.config.cjs -------------------------------------------------------------------------------- /fixture/marketing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/tsconfig.json -------------------------------------------------------------------------------- /fixture/marketing/webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/marketing/webpack.config.cjs -------------------------------------------------------------------------------- /fixture/shell/app/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/app/components/ui/button.tsx -------------------------------------------------------------------------------- /fixture/shell/app/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/app/lib/utils.ts -------------------------------------------------------------------------------- /fixture/shell/app/remotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/app/remotes.tsx -------------------------------------------------------------------------------- /fixture/shell/app/routes/_public.$/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/app/routes/_public.$/route.tsx -------------------------------------------------------------------------------- /fixture/shell/app/routes/_public._index/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/app/routes/_public._index/route.tsx -------------------------------------------------------------------------------- /fixture/shell/app/routes/_public.product.$handle/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/app/routes/_public.product.$handle/route.tsx -------------------------------------------------------------------------------- /fixture/shell/app/routes/_public/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/app/routes/_public/client.tsx -------------------------------------------------------------------------------- /fixture/shell/app/routes/_public/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/app/routes/_public/header.tsx -------------------------------------------------------------------------------- /fixture/shell/app/routes/_public/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/app/routes/_public/route.tsx -------------------------------------------------------------------------------- /fixture/shell/app/routes/_public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/app/routes/_public/style.css -------------------------------------------------------------------------------- /fixture/shell/app/routes/api.shell/route.tsx: -------------------------------------------------------------------------------- 1 | export { Component } from "../_public/route"; 2 | -------------------------------------------------------------------------------- /fixture/shell/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/components.json -------------------------------------------------------------------------------- /fixture/shell/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/modules.d.ts -------------------------------------------------------------------------------- /fixture/shell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/package.json -------------------------------------------------------------------------------- /fixture/shell/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/postcss.config.cjs -------------------------------------------------------------------------------- /fixture/shell/remotes.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/remotes.cjs -------------------------------------------------------------------------------- /fixture/shell/server.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/server.mts -------------------------------------------------------------------------------- /fixture/shell/ssr-server.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/ssr-server.mts -------------------------------------------------------------------------------- /fixture/shell/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/tailwind.config.cjs -------------------------------------------------------------------------------- /fixture/shell/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/tsconfig.json -------------------------------------------------------------------------------- /fixture/shell/webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/fixture/shell/webpack.config.cjs -------------------------------------------------------------------------------- /framework/bin/remix.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/bin/remix.cjs -------------------------------------------------------------------------------- /framework/cli/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/cli/build.mjs -------------------------------------------------------------------------------- /framework/entry/browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/entry/browser.tsx -------------------------------------------------------------------------------- /framework/entry/empty.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/entry/server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/entry/server.tsx -------------------------------------------------------------------------------- /framework/entry/ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/entry/ssr.tsx -------------------------------------------------------------------------------- /framework/lib/framework.browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/framework.browser.tsx -------------------------------------------------------------------------------- /framework/lib/framework.client.internal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/framework.client.internal.tsx -------------------------------------------------------------------------------- /framework/lib/framework.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/framework.client.tsx -------------------------------------------------------------------------------- /framework/lib/framework.runtime.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/framework.runtime.client.ts -------------------------------------------------------------------------------- /framework/lib/framework.runtime.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/framework.runtime.server.ts -------------------------------------------------------------------------------- /framework/lib/framework.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/framework.server.tsx -------------------------------------------------------------------------------- /framework/lib/framework.ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/framework.ssr.tsx -------------------------------------------------------------------------------- /framework/lib/framework.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/framework.tsx -------------------------------------------------------------------------------- /framework/lib/framework.webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/framework.webpack.ts -------------------------------------------------------------------------------- /framework/lib/react.client.browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/react.client.browser.tsx -------------------------------------------------------------------------------- /framework/lib/react.client.node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/react.client.node.tsx -------------------------------------------------------------------------------- /framework/lib/react.server.browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/react.server.browser.tsx -------------------------------------------------------------------------------- /framework/lib/react.server.node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/react.server.node.tsx -------------------------------------------------------------------------------- /framework/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/utils.ts -------------------------------------------------------------------------------- /framework/lib/webpack.federation-runtime-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/webpack.federation-runtime-plugin.ts -------------------------------------------------------------------------------- /framework/lib/webpack.plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/lib/webpack.plugins.ts -------------------------------------------------------------------------------- /framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/package.json -------------------------------------------------------------------------------- /framework/server-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/server-only.js -------------------------------------------------------------------------------- /framework/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/tsconfig.json -------------------------------------------------------------------------------- /framework/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/framework/tsconfig.lib.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/federated-rsc/HEAD/pnpm-workspace.yaml --------------------------------------------------------------------------------