@module-federation/managers 0.6.9 → 0.6.10
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/index.cjs.js +2 -4
- package/dist/index.esm.js +2 -4
- package/dist/package.json +1 -1
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -355,8 +355,7 @@ let RemoteManager = class RemoteManager extends BasicPluginOptionsManager {
|
|
|
355
355
|
this.normalizeOptions(options.remotes);
|
|
356
356
|
}
|
|
357
357
|
constructor(...args){
|
|
358
|
-
super(...args);
|
|
359
|
-
this.normalizedOptions = {};
|
|
358
|
+
super(...args), this.normalizedOptions = {};
|
|
360
359
|
}
|
|
361
360
|
};
|
|
362
361
|
|
|
@@ -455,8 +454,7 @@ let SharedManager = class SharedManager extends BasicPluginOptionsManager {
|
|
|
455
454
|
this.normalizeOptions(options.shared);
|
|
456
455
|
}
|
|
457
456
|
constructor(...args){
|
|
458
|
-
super(...args);
|
|
459
|
-
this.normalizedOptions = {};
|
|
457
|
+
super(...args), this.normalizedOptions = {};
|
|
460
458
|
}
|
|
461
459
|
};
|
|
462
460
|
|
package/dist/index.esm.js
CHANGED
|
@@ -353,8 +353,7 @@ let RemoteManager = class RemoteManager extends BasicPluginOptionsManager {
|
|
|
353
353
|
this.normalizeOptions(options.remotes);
|
|
354
354
|
}
|
|
355
355
|
constructor(...args){
|
|
356
|
-
super(...args);
|
|
357
|
-
this.normalizedOptions = {};
|
|
356
|
+
super(...args), this.normalizedOptions = {};
|
|
358
357
|
}
|
|
359
358
|
};
|
|
360
359
|
|
|
@@ -453,8 +452,7 @@ let SharedManager = class SharedManager extends BasicPluginOptionsManager {
|
|
|
453
452
|
this.normalizeOptions(options.shared);
|
|
454
453
|
}
|
|
455
454
|
constructor(...args){
|
|
456
|
-
super(...args);
|
|
457
|
-
this.normalizedOptions = {};
|
|
455
|
+
super(...args), this.normalizedOptions = {};
|
|
458
456
|
}
|
|
459
457
|
};
|
|
460
458
|
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/managers",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.10",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Provide managers for helping handle mf data .",
|
|
6
6
|
"keywords": [
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"find-pkg": "2.0.0",
|
|
23
23
|
"fs-extra": "9.1.0",
|
|
24
|
-
"@module-federation/sdk": "0.6.
|
|
24
|
+
"@module-federation/sdk": "0.6.10"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"webpack": "5.93.0"
|