@module-federation/bridge-react 2.5.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/base.cjs.js +3 -3
- package/dist/base.es.js +4 -4
- package/dist/{bridge-base-EnVXD4Hr.mjs → bridge-base-CIOXqUYV.mjs} +8 -6
- package/dist/{bridge-base-IlvdqYIj.js → bridge-base-HLp3d7aF.js} +8 -6
- package/dist/{createHelpers-D77sECmY.mjs → createHelpers-BY5Uj9_Z.mjs} +1 -1
- package/dist/{createHelpers-9B0ttrN_.js → createHelpers-DNBacpxb.js} +1 -1
- package/dist/data-fetch-utils.cjs.js +1 -1
- package/dist/data-fetch-utils.es.js +2 -2
- package/dist/data-fetch.cjs.js +2 -2
- package/dist/data-fetch.es.js +2 -2
- package/dist/index.cjs.js +3 -3
- package/dist/index.es.js +4 -4
- package/dist/{lazy-load-component-plugin-B3GJRx1-.mjs → lazy-load-component-plugin-BYI941I2.mjs} +1 -1
- package/dist/{lazy-load-component-plugin-8zeSnzyV.js → lazy-load-component-plugin-DG4e3Tib.js} +1 -1
- package/dist/lazy-load-component-plugin.cjs.js +2 -2
- package/dist/lazy-load-component-plugin.es.js +2 -2
- package/dist/{prefetch-DVsz9M2C.js → prefetch-CG2l-06N.js} +1 -2
- package/dist/{prefetch-zNZ70qRm.mjs → prefetch-DzO9_QQ-.mjs} +1 -2
- package/dist/v18.cjs.js +1 -1
- package/dist/v18.es.js +1 -1
- package/dist/v19.cjs.js +1 -1
- package/dist/v19.es.js +1 -1
- package/package.json +8 -8
package/dist/base.cjs.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const createHelpers = require("./createHelpers-
|
|
4
|
-
const lazyLoadComponentPlugin = require("./lazy-load-component-plugin-
|
|
3
|
+
const createHelpers = require("./createHelpers-DNBacpxb.js");
|
|
4
|
+
const lazyLoadComponentPlugin = require("./lazy-load-component-plugin-DG4e3Tib.js");
|
|
5
5
|
const lazyUtils = require("./utils-CFTy4LVE.js");
|
|
6
6
|
const dataFetchUtils = require("./data-fetch-utils.cjs.js");
|
|
7
|
-
const prefetch = require("./prefetch-
|
|
7
|
+
const prefetch = require("./prefetch-CG2l-06N.js");
|
|
8
8
|
const createRemoteAppComponent = createHelpers.createRemoteAppComponentFactory(createHelpers.RemoteAppWrapper);
|
|
9
9
|
const createRemoteComponent = createHelpers.createDeprecatedRemoteComponentFactory(
|
|
10
10
|
createRemoteAppComponent
|
package/dist/base.es.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { c as createRemoteAppComponentFactory, a as createDeprecatedRemoteComponentFactory, R as RemoteAppWrapper } from "./createHelpers-
|
|
2
|
-
import { b } from "./createHelpers-
|
|
3
|
-
import { a, c, b as b2, l } from "./lazy-load-component-plugin-
|
|
1
|
+
import { c as createRemoteAppComponentFactory, a as createDeprecatedRemoteComponentFactory, R as RemoteAppWrapper } from "./createHelpers-BY5Uj9_Z.mjs";
|
|
2
|
+
import { b } from "./createHelpers-BY5Uj9_Z.mjs";
|
|
3
|
+
import { a, c, b as b2, l } from "./lazy-load-component-plugin-BYI941I2.mjs";
|
|
4
4
|
import { C, a as a2, E, c as c2, b as b3, d, g, r, s } from "./utils-DGS4pYp8.mjs";
|
|
5
5
|
import { callDataFetch } from "./data-fetch-utils.es.js";
|
|
6
|
-
import { p } from "./prefetch-
|
|
6
|
+
import { p } from "./prefetch-DzO9_QQ-.mjs";
|
|
7
7
|
const createRemoteAppComponent = createRemoteAppComponentFactory(RemoteAppWrapper);
|
|
8
8
|
const createRemoteComponent = createDeprecatedRemoteComponentFactory(
|
|
9
9
|
createRemoteAppComponent
|
|
@@ -123,13 +123,17 @@ function createBaseBridgeComponent({
|
|
|
123
123
|
};
|
|
124
124
|
const DefaultFallback = ({ error }) => /* @__PURE__ */ React.createElement("div", { role: "alert" }, /* @__PURE__ */ React.createElement("p", null, "Something went wrong:"), /* @__PURE__ */ React.createElement("pre", { style: { color: "red" } }, error.message));
|
|
125
125
|
const ErrorBoundaryComponent = ErrorBoundary;
|
|
126
|
+
const omitHostFallback = (props) => {
|
|
127
|
+
const nextProps = { ...props };
|
|
128
|
+
delete nextProps.fallback;
|
|
129
|
+
return nextProps;
|
|
130
|
+
};
|
|
126
131
|
const BridgeWrapper = ({
|
|
127
132
|
basename,
|
|
128
133
|
moduleName,
|
|
129
134
|
memoryRoute,
|
|
130
|
-
propsInfo
|
|
131
|
-
|
|
132
|
-
}) => /* @__PURE__ */ React.createElement(ErrorBoundaryComponent, { FallbackComponent: fallback || DefaultFallback }, /* @__PURE__ */ React.createElement(
|
|
135
|
+
propsInfo
|
|
136
|
+
}) => /* @__PURE__ */ React.createElement(ErrorBoundaryComponent, { FallbackComponent: DefaultFallback }, /* @__PURE__ */ React.createElement(
|
|
133
137
|
RawComponent,
|
|
134
138
|
{
|
|
135
139
|
appInfo: {
|
|
@@ -149,7 +153,6 @@ function createBaseBridgeComponent({
|
|
|
149
153
|
dom,
|
|
150
154
|
basename,
|
|
151
155
|
memoryRoute,
|
|
152
|
-
fallback,
|
|
153
156
|
rootOptions,
|
|
154
157
|
...propsInfo
|
|
155
158
|
} = info;
|
|
@@ -164,9 +167,8 @@ function createBaseBridgeComponent({
|
|
|
164
167
|
basename,
|
|
165
168
|
moduleName,
|
|
166
169
|
memoryRoute,
|
|
167
|
-
fallback,
|
|
168
170
|
propsInfo: {
|
|
169
|
-
...propsInfo,
|
|
171
|
+
...omitHostFallback(propsInfo),
|
|
170
172
|
basename,
|
|
171
173
|
...beforeBridgeRenderRes == null ? void 0 : beforeBridgeRenderRes.extraProps
|
|
172
174
|
}
|
|
@@ -140,13 +140,17 @@ function createBaseBridgeComponent({
|
|
|
140
140
|
};
|
|
141
141
|
const DefaultFallback = ({ error }) => /* @__PURE__ */ React__namespace.createElement("div", { role: "alert" }, /* @__PURE__ */ React__namespace.createElement("p", null, "Something went wrong:"), /* @__PURE__ */ React__namespace.createElement("pre", { style: { color: "red" } }, error.message));
|
|
142
142
|
const ErrorBoundaryComponent = ErrorBoundary;
|
|
143
|
+
const omitHostFallback = (props) => {
|
|
144
|
+
const nextProps = { ...props };
|
|
145
|
+
delete nextProps.fallback;
|
|
146
|
+
return nextProps;
|
|
147
|
+
};
|
|
143
148
|
const BridgeWrapper = ({
|
|
144
149
|
basename,
|
|
145
150
|
moduleName,
|
|
146
151
|
memoryRoute,
|
|
147
|
-
propsInfo
|
|
148
|
-
|
|
149
|
-
}) => /* @__PURE__ */ React__namespace.createElement(ErrorBoundaryComponent, { FallbackComponent: fallback || DefaultFallback }, /* @__PURE__ */ React__namespace.createElement(
|
|
152
|
+
propsInfo
|
|
153
|
+
}) => /* @__PURE__ */ React__namespace.createElement(ErrorBoundaryComponent, { FallbackComponent: DefaultFallback }, /* @__PURE__ */ React__namespace.createElement(
|
|
150
154
|
RawComponent,
|
|
151
155
|
{
|
|
152
156
|
appInfo: {
|
|
@@ -166,7 +170,6 @@ function createBaseBridgeComponent({
|
|
|
166
170
|
dom,
|
|
167
171
|
basename,
|
|
168
172
|
memoryRoute,
|
|
169
|
-
fallback,
|
|
170
173
|
rootOptions,
|
|
171
174
|
...propsInfo
|
|
172
175
|
} = info;
|
|
@@ -181,9 +184,8 @@ function createBaseBridgeComponent({
|
|
|
181
184
|
basename,
|
|
182
185
|
moduleName,
|
|
183
186
|
memoryRoute,
|
|
184
|
-
fallback,
|
|
185
187
|
propsInfo: {
|
|
186
|
-
...propsInfo,
|
|
188
|
+
...omitHostFallback(propsInfo),
|
|
187
189
|
basename,
|
|
188
190
|
...beforeBridgeRenderRes == null ? void 0 : beforeBridgeRenderRes.extraProps
|
|
189
191
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as createBaseBridgeComponent, E as ErrorBoundary } from "./bridge-base-
|
|
1
|
+
import { c as createBaseBridgeComponent, E as ErrorBoundary } from "./bridge-base-CIOXqUYV.mjs";
|
|
2
2
|
import ReactDOM from "react-dom";
|
|
3
3
|
import { L as LoggerInstance, g as getRootDomDefaultClassName } from "./index-Bs2NxD2z.mjs";
|
|
4
4
|
import React__default, { forwardRef, useRef, useState, useEffect } from "react";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const lazyUtils = require("./utils-CFTy4LVE.js");
|
|
4
|
-
const prefetch = require("./prefetch-
|
|
4
|
+
const prefetch = require("./prefetch-CG2l-06N.js");
|
|
5
5
|
async function callDataFetch() {
|
|
6
6
|
const dataFetch = globalThis[lazyUtils.DATA_FETCH_FUNCTION];
|
|
7
7
|
if (dataFetch) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { y as DATA_FETCH_FUNCTION } from "./utils-DGS4pYp8.mjs";
|
|
2
2
|
import { C, a, c, b, d, g, r } from "./utils-DGS4pYp8.mjs";
|
|
3
|
-
import { d as dataFetchFunction } from "./prefetch-
|
|
4
|
-
import { i, p } from "./prefetch-
|
|
3
|
+
import { d as dataFetchFunction } from "./prefetch-DzO9_QQ-.mjs";
|
|
4
|
+
import { i, p } from "./prefetch-DzO9_QQ-.mjs";
|
|
5
5
|
async function callDataFetch() {
|
|
6
6
|
const dataFetch = globalThis[DATA_FETCH_FUNCTION];
|
|
7
7
|
if (dataFetch) {
|
package/dist/data-fetch.cjs.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const lazyLoadComponentPlugin = require("./lazy-load-component-plugin-
|
|
3
|
+
const lazyLoadComponentPlugin = require("./lazy-load-component-plugin-DG4e3Tib.js");
|
|
4
4
|
const lazyUtils = require("./utils-CFTy4LVE.js");
|
|
5
5
|
const dataFetchUtils = require("./data-fetch-utils.cjs.js");
|
|
6
|
-
const prefetch = require("./prefetch-
|
|
6
|
+
const prefetch = require("./prefetch-CG2l-06N.js");
|
|
7
7
|
exports.autoFetchDataPlugin = lazyLoadComponentPlugin.autoFetchData;
|
|
8
8
|
exports.collectSSRAssets = lazyLoadComponentPlugin.collectSSRAssets;
|
|
9
9
|
exports.createLazyComponent = lazyLoadComponentPlugin.createLazyComponent;
|
package/dist/data-fetch.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { a, c, b, l } from "./lazy-load-component-plugin-
|
|
1
|
+
import { a, c, b, l } from "./lazy-load-component-plugin-BYI941I2.mjs";
|
|
2
2
|
import { C, a as a2, E, c as c2, b as b2, d, f, g, r, s } from "./utils-DGS4pYp8.mjs";
|
|
3
3
|
import { callDataFetch } from "./data-fetch-utils.es.js";
|
|
4
|
-
import { p } from "./prefetch-
|
|
4
|
+
import { p } from "./prefetch-DzO9_QQ-.mjs";
|
|
5
5
|
export {
|
|
6
6
|
C as CacheSize,
|
|
7
7
|
a2 as CacheTime,
|
package/dist/index.cjs.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const createHelpers = require("./createHelpers-
|
|
4
|
-
const lazyLoadComponentPlugin = require("./lazy-load-component-plugin-
|
|
3
|
+
const createHelpers = require("./createHelpers-DNBacpxb.js");
|
|
4
|
+
const lazyLoadComponentPlugin = require("./lazy-load-component-plugin-DG4e3Tib.js");
|
|
5
5
|
const lazyUtils = require("./utils-CFTy4LVE.js");
|
|
6
6
|
const dataFetchUtils = require("./data-fetch-utils.cjs.js");
|
|
7
7
|
const React = require("react");
|
|
8
8
|
const ReactRouterDOM = require("react-router-dom");
|
|
9
9
|
const index = require("./index-DbjGCKOr.js");
|
|
10
|
-
const prefetch = require("./prefetch-
|
|
10
|
+
const prefetch = require("./prefetch-CG2l-06N.js");
|
|
11
11
|
function _interopNamespaceDefault(e2) {
|
|
12
12
|
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
13
13
|
if (e2) {
|
package/dist/index.es.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { R as RemoteAppWrapper, c as createRemoteAppComponentFactory, a as createDeprecatedRemoteComponentFactory } from "./createHelpers-
|
|
2
|
-
import { b } from "./createHelpers-
|
|
3
|
-
import { a, c, b as b2, l } from "./lazy-load-component-plugin-
|
|
1
|
+
import { R as RemoteAppWrapper, c as createRemoteAppComponentFactory, a as createDeprecatedRemoteComponentFactory } from "./createHelpers-BY5Uj9_Z.mjs";
|
|
2
|
+
import { b } from "./createHelpers-BY5Uj9_Z.mjs";
|
|
3
|
+
import { a, c, b as b2, l } from "./lazy-load-component-plugin-BYI941I2.mjs";
|
|
4
4
|
import { C, a as a2, E, c as c2, b as b3, d, g, r, s } from "./utils-DGS4pYp8.mjs";
|
|
5
5
|
import { callDataFetch } from "./data-fetch-utils.es.js";
|
|
6
6
|
import React__default, { forwardRef, useContext, useState, useEffect } from "react";
|
|
7
7
|
import * as ReactRouterDOM from "react-router-dom";
|
|
8
8
|
import { p as pathJoin, L as LoggerInstance } from "./index-Bs2NxD2z.mjs";
|
|
9
|
-
import { p } from "./prefetch-
|
|
9
|
+
import { p } from "./prefetch-DzO9_QQ-.mjs";
|
|
10
10
|
function e() {
|
|
11
11
|
const t = new PopStateEvent("popstate", { state: window.history.state });
|
|
12
12
|
window.dispatchEvent(t);
|
package/dist/{lazy-load-component-plugin-B3GJRx1-.mjs → lazy-load-component-plugin-BYI941I2.mjs}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as injectDataFetch, p as prefetch } from "./prefetch-
|
|
1
|
+
import { i as injectDataFetch, p as prefetch } from "./prefetch-DzO9_QQ-.mjs";
|
|
2
2
|
import { i as initDataFetchMap, k as isDataLoaderExpose, m as getDataFetchInfo, n as getDataFetchMapKey, l as logger, o as getDataFetchItem, p as DATA_FETCH_CLIENT_SUFFIX, q as MF_DATA_FETCH_TYPE, t as isCSROnly, M as MF_DATA_FETCH_STATUS, j as loadDataFetchModule, e as getDataFetchMap, u as isServerEnv, v as getDataFetchIdWithErrorMsgs, w as DATA_FETCH_ERROR_PREFIX, E as ERROR_TYPE, x as wrapDataFetchId, L as LOAD_REMOTE_ERROR_PREFIX, y as DATA_FETCH_FUNCTION, z as getLoadedRemoteInfos, h as fetchData$1, A as setDataFetchItemLoadedStatus, F as FS_HREF } from "./utils-DGS4pYp8.mjs";
|
|
3
3
|
import React__default, { useRef, useState, Suspense, useEffect } from "react";
|
|
4
4
|
const autoFetchData = () => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
const lazyLoadComponentPlugin = require("./lazy-load-component-plugin-
|
|
4
|
-
require("./prefetch-
|
|
3
|
+
const lazyLoadComponentPlugin = require("./lazy-load-component-plugin-DG4e3Tib.js");
|
|
4
|
+
require("./prefetch-CG2l-06N.js");
|
|
5
5
|
exports.default = lazyLoadComponentPlugin.lazyLoadComponentPlugin;
|
|
6
6
|
exports.lazyLoadComponentPlugin = lazyLoadComponentPlugin.lazyLoadComponentPlugin;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { l, l as l2 } from "./lazy-load-component-plugin-
|
|
2
|
-
import "./prefetch-
|
|
1
|
+
import { l, l as l2 } from "./lazy-load-component-plugin-BYI941I2.mjs";
|
|
2
|
+
import "./prefetch-DzO9_QQ-.mjs";
|
|
3
3
|
export {
|
|
4
4
|
l as default,
|
|
5
5
|
l2 as lazyLoadComponentPlugin
|
|
@@ -956,8 +956,7 @@ async function prefetch(options) {
|
|
|
956
956
|
const { remote, expose } = matchedRemoteInfo;
|
|
957
957
|
const { remoteSnapshot, globalSnapshot } = await instance.snapshotHandler.loadRemoteSnapshotInfo({
|
|
958
958
|
moduleInfo: remote,
|
|
959
|
-
id
|
|
960
|
-
expose
|
|
959
|
+
id
|
|
961
960
|
});
|
|
962
961
|
if (preloadComponentResource) {
|
|
963
962
|
const remoteInfo = runtimeHelpers.utils.getRemoteInfo(remote);
|
|
@@ -955,8 +955,7 @@ async function prefetch(options) {
|
|
|
955
955
|
const { remote, expose } = matchedRemoteInfo;
|
|
956
956
|
const { remoteSnapshot, globalSnapshot } = await instance.snapshotHandler.loadRemoteSnapshotInfo({
|
|
957
957
|
moduleInfo: remote,
|
|
958
|
-
id
|
|
959
|
-
expose
|
|
958
|
+
id
|
|
960
959
|
});
|
|
961
960
|
if (preloadComponentResource) {
|
|
962
961
|
const remoteInfo = runtimeHelpers.utils.getRemoteInfo(remote);
|
package/dist/v18.cjs.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const client = require("react-dom/client");
|
|
4
|
-
const bridgeBase = require("./bridge-base-
|
|
4
|
+
const bridgeBase = require("./bridge-base-HLp3d7aF.js");
|
|
5
5
|
function createReact18Root(container, options) {
|
|
6
6
|
return client.createRoot(container, options);
|
|
7
7
|
}
|
package/dist/v18.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createRoot } from "react-dom/client";
|
|
2
|
-
import { c as createBaseBridgeComponent } from "./bridge-base-
|
|
2
|
+
import { c as createBaseBridgeComponent } from "./bridge-base-CIOXqUYV.mjs";
|
|
3
3
|
function createReact18Root(container, options) {
|
|
4
4
|
return createRoot(container, options);
|
|
5
5
|
}
|
package/dist/v19.cjs.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const client = require("react-dom/client");
|
|
4
|
-
const bridgeBase = require("./bridge-base-
|
|
4
|
+
const bridgeBase = require("./bridge-base-HLp3d7aF.js");
|
|
5
5
|
function createReact19Root(container, options) {
|
|
6
6
|
return client.createRoot(container, options);
|
|
7
7
|
}
|
package/dist/v19.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createRoot } from "react-dom/client";
|
|
2
|
-
import { c as createBaseBridgeComponent } from "./bridge-base-
|
|
2
|
+
import { c as createBaseBridgeComponent } from "./bridge-base-CIOXqUYV.mjs";
|
|
3
3
|
function createReact19Root(container, options) {
|
|
4
4
|
return createRoot(container, options);
|
|
5
5
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/bridge-react",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
},
|
|
141
141
|
"dependencies": {
|
|
142
142
|
"lru-cache": "10.4.3",
|
|
143
|
-
"@module-federation/sdk": "2.
|
|
143
|
+
"@module-federation/sdk": "2.6.0"
|
|
144
144
|
},
|
|
145
145
|
"peerDependencies": {
|
|
146
146
|
"react": ">=16.9.0",
|
|
@@ -167,16 +167,16 @@
|
|
|
167
167
|
"@vitejs/plugin-vue-jsx": "^4.0.0",
|
|
168
168
|
"react": "18.3.1",
|
|
169
169
|
"react-dom": "18.3.1",
|
|
170
|
-
"react-router-dom": "6.30.
|
|
171
|
-
"react-router": "7.
|
|
170
|
+
"react-router-dom": "6.30.3",
|
|
171
|
+
"react-router": "7.16.0",
|
|
172
172
|
"typescript": "^5.2.2",
|
|
173
173
|
"vite": "^5.4.21",
|
|
174
174
|
"vite-plugin-dts": "^4.3.0",
|
|
175
|
-
"hono": "4.12.
|
|
175
|
+
"hono": "4.12.25",
|
|
176
176
|
"vitest": "1.6.0",
|
|
177
|
-
"@module-federation/
|
|
178
|
-
"@module-federation/
|
|
179
|
-
"@module-federation/runtime": "2.
|
|
177
|
+
"@module-federation/bridge-shared": "2.6.0",
|
|
178
|
+
"@module-federation/runtime": "2.6.0",
|
|
179
|
+
"@module-federation/runtime-core": "2.6.0"
|
|
180
180
|
},
|
|
181
181
|
"scripts": {
|
|
182
182
|
"dev": "vite",
|