@module-federation/sdk 0.0.0-next-20240822035014 → 0.0.0-next-20240822090000
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/package.json
CHANGED
|
@@ -150,10 +150,6 @@ export interface ModuleFederationPluginOptions {
|
|
|
150
150
|
* Share scope name used for all shared modules (defaults to 'default').
|
|
151
151
|
*/
|
|
152
152
|
shareScope?: string;
|
|
153
|
-
/**
|
|
154
|
-
* load shared strategy(defaults to 'version-first').
|
|
155
|
-
*/
|
|
156
|
-
shareStrategy?: SharedStrategy;
|
|
157
153
|
/**
|
|
158
154
|
* Modules that should be shared in the share scope. When provided, property names are used to match requested modules in this compilation.
|
|
159
155
|
*/
|
|
@@ -295,7 +291,6 @@ export interface SharedObject {
|
|
|
295
291
|
*/
|
|
296
292
|
[k: string]: SharedConfig | SharedItem;
|
|
297
293
|
}
|
|
298
|
-
export type SharedStrategy = 'version-first' | 'loaded-first';
|
|
299
294
|
/**
|
|
300
295
|
* Advanced configuration for modules that should be shared in the share scope.
|
|
301
296
|
*/
|
|
@@ -324,10 +319,6 @@ export interface SharedConfig {
|
|
|
324
319
|
* Share scope name.
|
|
325
320
|
*/
|
|
326
321
|
shareScope?: string;
|
|
327
|
-
/**
|
|
328
|
-
* load shared strategy(defaults to 'version-first').
|
|
329
|
-
*/
|
|
330
|
-
shareStrategy?: SharedStrategy;
|
|
331
322
|
/**
|
|
332
323
|
* Allow only a single version of the shared module in share scope (disabled by default).
|
|
333
324
|
*/
|