@tramvai/module-child-app 1.104.2 → 1.105.2
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/lib/browser.js +1 -1
- package/lib/server.es.js +1 -1
- package/lib/server.js +1 -1
- package/package.json +9 -9
package/lib/browser.js
CHANGED
|
@@ -379,7 +379,7 @@ const initModuleFederation = async (container, scope = 'default') => {
|
|
|
379
379
|
}
|
|
380
380
|
}
|
|
381
381
|
};
|
|
382
|
-
const getModuleFederation = async (container, name) => {
|
|
382
|
+
const getModuleFederation = async (container, name = 'entry') => {
|
|
383
383
|
return container.get(name);
|
|
384
384
|
};
|
|
385
385
|
|
package/lib/server.es.js
CHANGED
|
@@ -317,7 +317,7 @@ const initModuleFederation = async (container, scope = 'default') => {
|
|
|
317
317
|
}
|
|
318
318
|
}
|
|
319
319
|
};
|
|
320
|
-
const getModuleFederation = async (container, name) => {
|
|
320
|
+
const getModuleFederation = async (container, name = 'entry') => {
|
|
321
321
|
return container.get(name);
|
|
322
322
|
};
|
|
323
323
|
|
package/lib/server.js
CHANGED
|
@@ -326,7 +326,7 @@ const initModuleFederation = async (container, scope = 'default') => {
|
|
|
326
326
|
}
|
|
327
327
|
}
|
|
328
328
|
};
|
|
329
|
-
const getModuleFederation = async (container, name) => {
|
|
329
|
+
const getModuleFederation = async (container, name = 'entry') => {
|
|
330
330
|
return container.get(name);
|
|
331
331
|
};
|
|
332
332
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/module-child-app",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.105.2",
|
|
4
4
|
"description": "Module for child apps",
|
|
5
5
|
"browser": {
|
|
6
6
|
"./lib/server.js": "./lib/browser.js",
|
|
@@ -31,20 +31,20 @@
|
|
|
31
31
|
"@tinkoff/env-validators": "0.0.4",
|
|
32
32
|
"@tinkoff/module-loader-client": "0.3.27",
|
|
33
33
|
"@tinkoff/module-loader-server": "0.4.43",
|
|
34
|
-
"@tramvai/child-app-core": "1.
|
|
34
|
+
"@tramvai/child-app-core": "1.105.2",
|
|
35
35
|
"@tramvai/safe-strings": "0.4.4",
|
|
36
|
-
"@tramvai/tokens-child-app": "1.
|
|
36
|
+
"@tramvai/tokens-child-app": "1.105.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@tinkoff/dippy": "0.7.41",
|
|
41
41
|
"@tinkoff/utils": "^2.1.2",
|
|
42
|
-
"@tramvai/core": "1.
|
|
43
|
-
"@tramvai/state": "1.
|
|
44
|
-
"@tramvai/react": "1.
|
|
45
|
-
"@tramvai/tokens-common": "1.
|
|
46
|
-
"@tramvai/tokens-render": "1.
|
|
47
|
-
"@tramvai/tokens-router": "1.
|
|
42
|
+
"@tramvai/core": "1.105.2",
|
|
43
|
+
"@tramvai/state": "1.105.2",
|
|
44
|
+
"@tramvai/react": "1.105.2",
|
|
45
|
+
"@tramvai/tokens-common": "1.105.2",
|
|
46
|
+
"@tramvai/tokens-render": "1.105.2",
|
|
47
|
+
"@tramvai/tokens-router": "1.105.2",
|
|
48
48
|
"react": ">=16.14.0",
|
|
49
49
|
"react-dom": ">=16.14.0",
|
|
50
50
|
"object-assign": "^4.1.1",
|