@module-federation/enhanced 0.11.4 → 0.12.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/package.json +4 -3
- package/dist/src/declarations/plugins/sharing/ConsumeSharedModule.d.ts +53 -0
- package/dist/src/declarations/plugins/sharing/ConsumeSharedPlugin.d.ts +14 -2
- package/dist/src/declarations/plugins/sharing/ProvideSharedPlugin.d.ts +10 -2
- package/dist/src/declarations/plugins/sharing/SharePlugin.d.ts +14 -2
- package/dist/src/lib/container/ContainerEntryDependency.d.ts +3 -3
- package/dist/src/lib/container/ContainerEntryDependency.js +1 -1
- package/dist/src/lib/container/ContainerEntryDependency.js.map +1 -1
- package/dist/src/lib/container/ContainerEntryModule.d.ts +2 -2
- package/dist/src/lib/container/ContainerEntryModule.js +5 -2
- package/dist/src/lib/container/ContainerEntryModule.js.map +1 -1
- package/dist/src/lib/container/ContainerReferencePlugin.js +1 -1
- package/dist/src/lib/container/ContainerReferencePlugin.js.map +1 -1
- package/dist/src/lib/container/ModuleFederationPlugin.js +8 -0
- package/dist/src/lib/container/ModuleFederationPlugin.js.map +1 -1
- package/dist/src/lib/container/RemoteModule.d.ts +3 -3
- package/dist/src/lib/container/RemoteModule.js +5 -2
- package/dist/src/lib/container/RemoteModule.js.map +1 -1
- package/dist/src/lib/container/runtime/FederationRuntimePlugin.js +5 -5
- package/dist/src/lib/container/runtime/FederationRuntimePlugin.js.map +1 -1
- package/dist/src/lib/sharing/ConsumeSharedModule.d.ts +1 -38
- package/dist/src/lib/sharing/ConsumeSharedModule.js +25 -15
- package/dist/src/lib/sharing/ConsumeSharedModule.js.map +1 -1
- package/dist/src/lib/sharing/ConsumeSharedPlugin.js +64 -41
- package/dist/src/lib/sharing/ConsumeSharedPlugin.js.map +1 -1
- package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.js +3 -1
- package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.js.map +1 -1
- package/dist/src/lib/sharing/ProvideSharedDependency.d.ts +5 -3
- package/dist/src/lib/sharing/ProvideSharedDependency.js +12 -6
- package/dist/src/lib/sharing/ProvideSharedDependency.js.map +1 -1
- package/dist/src/lib/sharing/ProvideSharedModule.d.ts +3 -2
- package/dist/src/lib/sharing/ProvideSharedModule.js +10 -12
- package/dist/src/lib/sharing/ProvideSharedModule.js.map +1 -1
- package/dist/src/lib/sharing/ProvideSharedModuleFactory.js +1 -3
- package/dist/src/lib/sharing/ProvideSharedModuleFactory.js.map +1 -1
- package/dist/src/lib/sharing/ProvideSharedPlugin.d.ts +2 -10
- package/dist/src/lib/sharing/ProvideSharedPlugin.js +65 -43
- package/dist/src/lib/sharing/ProvideSharedPlugin.js.map +1 -1
- package/dist/src/lib/sharing/SharePlugin.d.ts +2 -3
- package/dist/src/lib/sharing/SharePlugin.js +8 -5
- package/dist/src/lib/sharing/SharePlugin.js.map +1 -1
- package/dist/src/lib/sharing/ShareRuntimeModule.js +9 -7
- package/dist/src/lib/sharing/ShareRuntimeModule.js.map +1 -1
- package/dist/src/lib/sharing/resolveMatchedConfigs.d.ts +2 -1
- package/dist/src/lib/sharing/resolveMatchedConfigs.js +33 -16
- package/dist/src/lib/sharing/resolveMatchedConfigs.js.map +1 -1
- package/dist/src/lib/sharing/utils.d.ts +3 -2
- package/dist/src/lib/sharing/utils.js +2 -1
- package/dist/src/lib/sharing/utils.js.map +1 -1
- package/dist/src/schemas/container/ContainerPlugin.check.d.ts +3 -3
- package/dist/src/schemas/container/ContainerPlugin.check.js +333 -290
- package/dist/src/schemas/container/ContainerPlugin.check.js.map +1 -1
- package/dist/src/schemas/container/ContainerPlugin.d.ts +31 -18
- package/dist/src/schemas/container/ContainerPlugin.js +34 -21
- package/dist/src/schemas/container/ContainerPlugin.js.map +1 -1
- package/dist/src/schemas/container/ContainerReferencePlugin.check.d.ts +3 -3
- package/dist/src/schemas/container/ContainerReferencePlugin.check.js +293 -188
- package/dist/src/schemas/container/ContainerReferencePlugin.check.js.map +1 -1
- package/dist/src/schemas/container/ContainerReferencePlugin.d.ts +25 -5
- package/dist/src/schemas/container/ContainerReferencePlugin.js +31 -4
- package/dist/src/schemas/container/ContainerReferencePlugin.js.map +1 -1
- package/dist/src/schemas/container/ExternalsType.check.js +2 -2
- package/dist/src/schemas/container/ExternalsType.check.js.map +1 -1
- package/dist/src/schemas/container/ModuleFederationPlugin.check.js +1464 -1282
- package/dist/src/schemas/container/ModuleFederationPlugin.check.js.map +1 -1
- package/dist/src/schemas/container/ModuleFederationPlugin.d.ts +130 -78
- package/dist/src/schemas/container/ModuleFederationPlugin.js +144 -83
- package/dist/src/schemas/container/ModuleFederationPlugin.js.map +1 -1
- package/dist/src/schemas/sharing/ConsumeSharedPlugin.check.d.ts +3 -3
- package/dist/src/schemas/sharing/ConsumeSharedPlugin.check.js +302 -160
- package/dist/src/schemas/sharing/ConsumeSharedPlugin.check.js.map +1 -1
- package/dist/src/schemas/sharing/ConsumeSharedPlugin.d.ts +33 -2
- package/dist/src/schemas/sharing/ConsumeSharedPlugin.js +39 -2
- package/dist/src/schemas/sharing/ConsumeSharedPlugin.js.map +1 -1
- package/dist/src/schemas/sharing/ProvideSharedPlugin.check.d.ts +1 -1
- package/dist/src/schemas/sharing/ProvideSharedPlugin.check.js +374 -164
- package/dist/src/schemas/sharing/ProvideSharedPlugin.check.js.map +1 -1
- package/dist/src/schemas/sharing/ProvideSharedPlugin.d.ts +51 -2
- package/dist/src/schemas/sharing/ProvideSharedPlugin.js +60 -2
- package/dist/src/schemas/sharing/ProvideSharedPlugin.js.map +1 -1
- package/dist/src/schemas/sharing/ProviderSharedPlugin.check.js +148 -94
- package/dist/src/schemas/sharing/ProviderSharedPlugin.check.js.map +1 -1
- package/dist/src/schemas/sharing/ProviderSharedPlugin.d.ts +10 -0
- package/dist/src/schemas/sharing/ProviderSharedPlugin.js +10 -1
- package/dist/src/schemas/sharing/ProviderSharedPlugin.js.map +1 -1
- package/dist/src/schemas/sharing/SharePlugin.check.d.ts +3 -3
- package/dist/src/schemas/sharing/SharePlugin.check.js +239 -135
- package/dist/src/schemas/sharing/SharePlugin.check.js.map +1 -1
- package/dist/src/schemas/sharing/SharePlugin.d.ts +24 -4
- package/dist/src/schemas/sharing/SharePlugin.js +30 -4
- package/dist/src/schemas/sharing/SharePlugin.js.map +1 -1
- package/dist/src/utils.d.ts +9 -0
- package/dist/src/utils.js +31 -0
- package/dist/src/utils.js.map +1 -0
- package/package.json +15 -14
|
@@ -87,7 +87,7 @@ declare const _default: {
|
|
|
87
87
|
};
|
|
88
88
|
readonly ExternalsType: {
|
|
89
89
|
readonly description: "Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value).";
|
|
90
|
-
readonly enum: readonly ["var", "module", "assign", "this", "window", "self", "global", "commonjs", "commonjs2", "commonjs-module", "commonjs-static", "amd", "amd-require", "umd", "umd2", "jsonp", "system", "promise", "import", "
|
|
90
|
+
readonly enum: readonly ["var", "module", "assign", "this", "window", "self", "global", "commonjs", "commonjs2", "commonjs-module", "commonjs-static", "amd", "amd-require", "umd", "umd2", "jsonp", "system", "promise", "import", "module-import", "script", "node-commonjs"];
|
|
91
91
|
};
|
|
92
92
|
readonly LibraryCustomUmdCommentObject: {
|
|
93
93
|
readonly description: "Set explicit comments for `commonjs`, `commonjs2`, `amd`, and `root`.";
|
|
@@ -239,8 +239,16 @@ declare const _default: {
|
|
|
239
239
|
};
|
|
240
240
|
readonly shareScope: {
|
|
241
241
|
readonly description: "The name of the share scope shared with this remote.";
|
|
242
|
-
readonly
|
|
243
|
-
|
|
242
|
+
readonly anyOf: readonly [{
|
|
243
|
+
readonly type: "string";
|
|
244
|
+
readonly minLength: 1;
|
|
245
|
+
}, {
|
|
246
|
+
readonly type: "array";
|
|
247
|
+
readonly items: {
|
|
248
|
+
readonly type: "string";
|
|
249
|
+
readonly minLength: 1;
|
|
250
|
+
};
|
|
251
|
+
}];
|
|
244
252
|
};
|
|
245
253
|
};
|
|
246
254
|
readonly required: readonly ["external"];
|
|
@@ -305,6 +313,21 @@ declare const _default: {
|
|
|
305
313
|
readonly $ref: "#/definitions/SharedItem";
|
|
306
314
|
}];
|
|
307
315
|
};
|
|
316
|
+
readonly request: {
|
|
317
|
+
readonly description: "Import request to match on";
|
|
318
|
+
readonly type: "string";
|
|
319
|
+
readonly minLength: 1;
|
|
320
|
+
};
|
|
321
|
+
readonly layer: {
|
|
322
|
+
readonly description: "Layer in which the shared module should be placed.";
|
|
323
|
+
readonly type: "string";
|
|
324
|
+
readonly minLength: 1;
|
|
325
|
+
};
|
|
326
|
+
readonly issuerLayer: {
|
|
327
|
+
readonly description: "Layer of the issuer.";
|
|
328
|
+
readonly type: "string";
|
|
329
|
+
readonly minLength: 1;
|
|
330
|
+
};
|
|
308
331
|
readonly packageName: {
|
|
309
332
|
readonly description: "Package name to determine required version from description file. This is only needed when package name can't be automatically determined from request.";
|
|
310
333
|
readonly type: "string";
|
|
@@ -327,12 +350,16 @@ declare const _default: {
|
|
|
327
350
|
};
|
|
328
351
|
readonly shareScope: {
|
|
329
352
|
readonly description: "Share scope name.";
|
|
330
|
-
readonly
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
353
|
+
readonly anyOf: readonly [{
|
|
354
|
+
readonly type: "string";
|
|
355
|
+
readonly minLength: 1;
|
|
356
|
+
}, {
|
|
357
|
+
readonly type: "array";
|
|
358
|
+
readonly items: {
|
|
359
|
+
readonly type: "string";
|
|
360
|
+
readonly minLength: 1;
|
|
361
|
+
};
|
|
362
|
+
}];
|
|
336
363
|
};
|
|
337
364
|
readonly singleton: {
|
|
338
365
|
readonly description: "Allow only a single version of the shared module in share scope (disabled by default).";
|
|
@@ -380,55 +407,26 @@ declare const _default: {
|
|
|
380
407
|
readonly type: "object";
|
|
381
408
|
readonly additionalProperties: false;
|
|
382
409
|
readonly properties: {
|
|
383
|
-
readonly
|
|
384
|
-
readonly description: "Enable
|
|
410
|
+
readonly async: {
|
|
411
|
+
readonly description: "Enable/disable asynchronous loading of runtime modules. When enabled, entry points will be wrapped in asynchronous chunks.";
|
|
385
412
|
readonly type: "boolean";
|
|
386
413
|
};
|
|
387
414
|
readonly exposes: {
|
|
388
415
|
readonly $ref: "#/definitions/Exposes";
|
|
389
416
|
};
|
|
390
417
|
readonly filename: {
|
|
391
|
-
readonly description: "The filename
|
|
418
|
+
readonly description: "The filename for this container relative path inside the `output.path` directory.";
|
|
392
419
|
readonly type: "string";
|
|
393
420
|
readonly absolutePath: false;
|
|
394
|
-
|
|
395
|
-
readonly getPublicPath: {
|
|
396
|
-
readonly description: "Custom public path function";
|
|
397
|
-
readonly type: "string";
|
|
398
|
-
};
|
|
399
|
-
readonly implementation: {
|
|
400
|
-
readonly description: "Bundler runtime path";
|
|
401
|
-
readonly type: "string";
|
|
421
|
+
readonly minLength: 1;
|
|
402
422
|
};
|
|
403
423
|
readonly library: {
|
|
404
424
|
readonly $ref: "#/definitions/LibraryOptions";
|
|
405
425
|
};
|
|
406
|
-
readonly manifest: {
|
|
407
|
-
readonly description: "Manifest generation options";
|
|
408
|
-
readonly anyOf: readonly [{
|
|
409
|
-
readonly type: "boolean";
|
|
410
|
-
}, {
|
|
411
|
-
readonly type: "object";
|
|
412
|
-
readonly properties: {
|
|
413
|
-
readonly filePath: {
|
|
414
|
-
readonly type: "string";
|
|
415
|
-
};
|
|
416
|
-
readonly disableAssetsAnalyze: {
|
|
417
|
-
readonly type: "boolean";
|
|
418
|
-
};
|
|
419
|
-
readonly fileName: {
|
|
420
|
-
readonly type: "string";
|
|
421
|
-
};
|
|
422
|
-
readonly additionalData: {
|
|
423
|
-
readonly type: "string";
|
|
424
|
-
readonly description: "Function string to provide additional data to the manifest";
|
|
425
|
-
};
|
|
426
|
-
};
|
|
427
|
-
}];
|
|
428
|
-
};
|
|
429
426
|
readonly name: {
|
|
430
|
-
readonly description: "The name
|
|
427
|
+
readonly description: "The name for this container.";
|
|
431
428
|
readonly type: "string";
|
|
429
|
+
readonly minLength: 1;
|
|
432
430
|
};
|
|
433
431
|
readonly remoteType: {
|
|
434
432
|
readonly description: "The external type of the remote containers.";
|
|
@@ -442,48 +440,27 @@ declare const _default: {
|
|
|
442
440
|
readonly runtime: {
|
|
443
441
|
readonly $ref: "#/definitions/EntryRuntime";
|
|
444
442
|
};
|
|
445
|
-
readonly runtimePlugins: {
|
|
446
|
-
readonly description: "Runtime plugin file paths or package name";
|
|
447
|
-
readonly type: "array";
|
|
448
|
-
readonly items: {
|
|
449
|
-
readonly type: "string";
|
|
450
|
-
};
|
|
451
|
-
};
|
|
452
443
|
readonly shareScope: {
|
|
453
|
-
readonly description: "
|
|
454
|
-
readonly
|
|
455
|
-
|
|
444
|
+
readonly description: "The name of the share scope which is shared with the host (defaults to 'default').";
|
|
445
|
+
readonly anyOf: readonly [{
|
|
446
|
+
readonly type: "string";
|
|
447
|
+
readonly minLength: 1;
|
|
448
|
+
}, {
|
|
449
|
+
readonly type: "array";
|
|
450
|
+
readonly items: {
|
|
451
|
+
readonly type: "string";
|
|
452
|
+
readonly minLength: 1;
|
|
453
|
+
};
|
|
454
|
+
}];
|
|
456
455
|
};
|
|
457
456
|
readonly shareStrategy: {
|
|
458
|
-
readonly description: "
|
|
457
|
+
readonly description: "Strategy for resolving shared modules";
|
|
459
458
|
readonly enum: readonly ["version-first", "loaded-first"];
|
|
459
|
+
readonly type: "string";
|
|
460
460
|
};
|
|
461
461
|
readonly shared: {
|
|
462
462
|
readonly $ref: "#/definitions/Shared";
|
|
463
463
|
};
|
|
464
|
-
readonly virtualRuntimeEntry: {
|
|
465
|
-
readonly description: "Enable virtual runtime entry";
|
|
466
|
-
readonly type: "boolean";
|
|
467
|
-
};
|
|
468
|
-
readonly dev: {
|
|
469
|
-
readonly description: "Development options";
|
|
470
|
-
readonly anyOf: readonly [{
|
|
471
|
-
readonly type: "boolean";
|
|
472
|
-
}, {
|
|
473
|
-
readonly type: "object";
|
|
474
|
-
readonly properties: {
|
|
475
|
-
readonly disableLiveReload: {
|
|
476
|
-
readonly type: "boolean";
|
|
477
|
-
};
|
|
478
|
-
readonly disableHotTypesReload: {
|
|
479
|
-
readonly type: "boolean";
|
|
480
|
-
};
|
|
481
|
-
readonly disableDynamicRemoteTypeHints: {
|
|
482
|
-
readonly type: "boolean";
|
|
483
|
-
};
|
|
484
|
-
};
|
|
485
|
-
}];
|
|
486
|
-
};
|
|
487
464
|
readonly dts: {
|
|
488
465
|
readonly description: "TypeScript declaration file generation options";
|
|
489
466
|
readonly anyOf: readonly [{
|
|
@@ -603,6 +580,7 @@ declare const _default: {
|
|
|
603
580
|
};
|
|
604
581
|
};
|
|
605
582
|
readonly bridge: {
|
|
583
|
+
readonly description: "Bridge configuration options";
|
|
606
584
|
readonly type: "object";
|
|
607
585
|
readonly properties: {
|
|
608
586
|
readonly disableAlias: {
|
|
@@ -611,6 +589,80 @@ declare const _default: {
|
|
|
611
589
|
readonly default: false;
|
|
612
590
|
};
|
|
613
591
|
};
|
|
592
|
+
readonly additionalProperties: false;
|
|
593
|
+
};
|
|
594
|
+
readonly virtualRuntimeEntry: {
|
|
595
|
+
readonly description: "Uses a virtual module instead of a file for federation runtime entry";
|
|
596
|
+
readonly type: "boolean";
|
|
597
|
+
};
|
|
598
|
+
readonly dev: {
|
|
599
|
+
readonly description: "Development mode configuration options";
|
|
600
|
+
readonly anyOf: readonly [{
|
|
601
|
+
readonly type: "boolean";
|
|
602
|
+
}, {
|
|
603
|
+
readonly type: "object";
|
|
604
|
+
readonly properties: {
|
|
605
|
+
readonly disableLiveReload: {
|
|
606
|
+
readonly description: "Disable live reload for development mode";
|
|
607
|
+
readonly type: "boolean";
|
|
608
|
+
};
|
|
609
|
+
readonly disableHotTypesReload: {
|
|
610
|
+
readonly description: "Disable hot types reload for development mode";
|
|
611
|
+
readonly type: "boolean";
|
|
612
|
+
};
|
|
613
|
+
readonly disableDynamicRemoteTypeHints: {
|
|
614
|
+
readonly description: "Disable dynamic remote type hints for development mode";
|
|
615
|
+
readonly type: "boolean";
|
|
616
|
+
};
|
|
617
|
+
};
|
|
618
|
+
readonly additionalProperties: false;
|
|
619
|
+
}];
|
|
620
|
+
};
|
|
621
|
+
readonly manifest: {
|
|
622
|
+
readonly description: "Manifest generation configuration options. IMPORTANT: When using this option, you must set a string value for `output.publicPath` in your webpack configuration.";
|
|
623
|
+
readonly anyOf: readonly [{
|
|
624
|
+
readonly type: "boolean";
|
|
625
|
+
}, {
|
|
626
|
+
readonly type: "object";
|
|
627
|
+
readonly properties: {
|
|
628
|
+
readonly filePath: {
|
|
629
|
+
readonly description: "Path where the manifest file will be generated";
|
|
630
|
+
readonly type: "string";
|
|
631
|
+
};
|
|
632
|
+
readonly disableAssetsAnalyze: {
|
|
633
|
+
readonly description: "Disable assets analyze for manifest generation";
|
|
634
|
+
readonly type: "boolean";
|
|
635
|
+
};
|
|
636
|
+
readonly fileName: {
|
|
637
|
+
readonly description: "Name of the manifest file";
|
|
638
|
+
readonly type: "string";
|
|
639
|
+
};
|
|
640
|
+
readonly additionalData: {
|
|
641
|
+
readonly description: "Function that provides additional data to the manifest";
|
|
642
|
+
readonly instanceof: "Function";
|
|
643
|
+
};
|
|
644
|
+
};
|
|
645
|
+
readonly additionalProperties: false;
|
|
646
|
+
}];
|
|
647
|
+
};
|
|
648
|
+
readonly runtimePlugins: {
|
|
649
|
+
readonly description: "Runtime plugin file paths or package names to be included in federation runtime";
|
|
650
|
+
readonly type: "array";
|
|
651
|
+
readonly items: {
|
|
652
|
+
readonly type: "string";
|
|
653
|
+
};
|
|
654
|
+
};
|
|
655
|
+
readonly getPublicPath: {
|
|
656
|
+
readonly description: "Custom public path function for remote entry";
|
|
657
|
+
readonly type: "string";
|
|
658
|
+
};
|
|
659
|
+
readonly dataPrefetch: {
|
|
660
|
+
readonly description: "Whether enable data prefetch";
|
|
661
|
+
readonly type: "boolean";
|
|
662
|
+
};
|
|
663
|
+
readonly implementation: {
|
|
664
|
+
readonly description: "Bundler runtime path";
|
|
665
|
+
readonly type: "string";
|
|
614
666
|
};
|
|
615
667
|
};
|
|
616
668
|
};
|
|
@@ -134,8 +134,8 @@ exports.default = {
|
|
|
134
134
|
'system',
|
|
135
135
|
'promise',
|
|
136
136
|
'import',
|
|
137
|
-
'script',
|
|
138
137
|
'module-import',
|
|
138
|
+
'script',
|
|
139
139
|
'node-commonjs',
|
|
140
140
|
],
|
|
141
141
|
},
|
|
@@ -330,8 +330,19 @@ exports.default = {
|
|
|
330
330
|
},
|
|
331
331
|
shareScope: {
|
|
332
332
|
description: 'The name of the share scope shared with this remote.',
|
|
333
|
-
|
|
334
|
-
|
|
333
|
+
anyOf: [
|
|
334
|
+
{
|
|
335
|
+
type: 'string',
|
|
336
|
+
minLength: 1,
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
type: 'array',
|
|
340
|
+
items: {
|
|
341
|
+
type: 'string',
|
|
342
|
+
minLength: 1,
|
|
343
|
+
},
|
|
344
|
+
},
|
|
345
|
+
],
|
|
335
346
|
},
|
|
336
347
|
},
|
|
337
348
|
required: ['external'],
|
|
@@ -409,6 +420,21 @@ exports.default = {
|
|
|
409
420
|
},
|
|
410
421
|
],
|
|
411
422
|
},
|
|
423
|
+
request: {
|
|
424
|
+
description: 'Import request to match on',
|
|
425
|
+
type: 'string',
|
|
426
|
+
minLength: 1,
|
|
427
|
+
},
|
|
428
|
+
layer: {
|
|
429
|
+
description: 'Layer in which the shared module should be placed.',
|
|
430
|
+
type: 'string',
|
|
431
|
+
minLength: 1,
|
|
432
|
+
},
|
|
433
|
+
issuerLayer: {
|
|
434
|
+
description: 'Layer of the issuer.',
|
|
435
|
+
type: 'string',
|
|
436
|
+
minLength: 1,
|
|
437
|
+
},
|
|
412
438
|
packageName: {
|
|
413
439
|
description: "Package name to determine required version from description file. This is only needed when package name can't be automatically determined from request.",
|
|
414
440
|
type: 'string',
|
|
@@ -434,12 +460,19 @@ exports.default = {
|
|
|
434
460
|
},
|
|
435
461
|
shareScope: {
|
|
436
462
|
description: 'Share scope name.',
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
463
|
+
anyOf: [
|
|
464
|
+
{
|
|
465
|
+
type: 'string',
|
|
466
|
+
minLength: 1,
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
type: 'array',
|
|
470
|
+
items: {
|
|
471
|
+
type: 'string',
|
|
472
|
+
minLength: 1,
|
|
473
|
+
},
|
|
474
|
+
},
|
|
475
|
+
],
|
|
443
476
|
},
|
|
444
477
|
singleton: {
|
|
445
478
|
description: 'Allow only a single version of the shared module in share scope (disabled by default).',
|
|
@@ -493,58 +526,26 @@ exports.default = {
|
|
|
493
526
|
type: 'object',
|
|
494
527
|
additionalProperties: false,
|
|
495
528
|
properties: {
|
|
496
|
-
|
|
497
|
-
description: 'Enable
|
|
529
|
+
async: {
|
|
530
|
+
description: 'Enable/disable asynchronous loading of runtime modules. When enabled, entry points will be wrapped in asynchronous chunks.',
|
|
498
531
|
type: 'boolean',
|
|
499
532
|
},
|
|
500
533
|
exposes: {
|
|
501
534
|
$ref: '#/definitions/Exposes',
|
|
502
535
|
},
|
|
503
536
|
filename: {
|
|
504
|
-
description: 'The filename
|
|
537
|
+
description: 'The filename for this container relative path inside the `output.path` directory.',
|
|
505
538
|
type: 'string',
|
|
506
539
|
absolutePath: false,
|
|
507
|
-
|
|
508
|
-
getPublicPath: {
|
|
509
|
-
description: 'Custom public path function',
|
|
510
|
-
type: 'string',
|
|
511
|
-
},
|
|
512
|
-
implementation: {
|
|
513
|
-
description: 'Bundler runtime path',
|
|
514
|
-
type: 'string',
|
|
540
|
+
minLength: 1,
|
|
515
541
|
},
|
|
516
542
|
library: {
|
|
517
543
|
$ref: '#/definitions/LibraryOptions',
|
|
518
544
|
},
|
|
519
|
-
manifest: {
|
|
520
|
-
description: 'Manifest generation options',
|
|
521
|
-
anyOf: [
|
|
522
|
-
{
|
|
523
|
-
type: 'boolean',
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
type: 'object',
|
|
527
|
-
properties: {
|
|
528
|
-
filePath: {
|
|
529
|
-
type: 'string',
|
|
530
|
-
},
|
|
531
|
-
disableAssetsAnalyze: {
|
|
532
|
-
type: 'boolean',
|
|
533
|
-
},
|
|
534
|
-
fileName: {
|
|
535
|
-
type: 'string',
|
|
536
|
-
},
|
|
537
|
-
additionalData: {
|
|
538
|
-
type: 'string',
|
|
539
|
-
description: 'Function string to provide additional data to the manifest',
|
|
540
|
-
},
|
|
541
|
-
},
|
|
542
|
-
},
|
|
543
|
-
],
|
|
544
|
-
},
|
|
545
545
|
name: {
|
|
546
|
-
description: 'The name
|
|
546
|
+
description: 'The name for this container.',
|
|
547
547
|
type: 'string',
|
|
548
|
+
minLength: 1,
|
|
548
549
|
},
|
|
549
550
|
remoteType: {
|
|
550
551
|
description: 'The external type of the remote containers.',
|
|
@@ -560,51 +561,30 @@ exports.default = {
|
|
|
560
561
|
runtime: {
|
|
561
562
|
$ref: '#/definitions/EntryRuntime',
|
|
562
563
|
},
|
|
563
|
-
runtimePlugins: {
|
|
564
|
-
description: 'Runtime plugin file paths or package name',
|
|
565
|
-
type: 'array',
|
|
566
|
-
items: {
|
|
567
|
-
type: 'string',
|
|
568
|
-
},
|
|
569
|
-
},
|
|
570
564
|
shareScope: {
|
|
571
|
-
description: "
|
|
572
|
-
type: 'string',
|
|
573
|
-
minLength: 1,
|
|
574
|
-
},
|
|
575
|
-
shareStrategy: {
|
|
576
|
-
description: "load shared strategy(defaults to 'version-first').",
|
|
577
|
-
enum: ['version-first', 'loaded-first'],
|
|
578
|
-
},
|
|
579
|
-
shared: {
|
|
580
|
-
$ref: '#/definitions/Shared',
|
|
581
|
-
},
|
|
582
|
-
virtualRuntimeEntry: {
|
|
583
|
-
description: 'Enable virtual runtime entry',
|
|
584
|
-
type: 'boolean',
|
|
585
|
-
},
|
|
586
|
-
dev: {
|
|
587
|
-
description: 'Development options',
|
|
565
|
+
description: "The name of the share scope which is shared with the host (defaults to 'default').",
|
|
588
566
|
anyOf: [
|
|
589
567
|
{
|
|
590
|
-
type: '
|
|
568
|
+
type: 'string',
|
|
569
|
+
minLength: 1,
|
|
591
570
|
},
|
|
592
571
|
{
|
|
593
|
-
type: '
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
},
|
|
598
|
-
disableHotTypesReload: {
|
|
599
|
-
type: 'boolean',
|
|
600
|
-
},
|
|
601
|
-
disableDynamicRemoteTypeHints: {
|
|
602
|
-
type: 'boolean',
|
|
603
|
-
},
|
|
572
|
+
type: 'array',
|
|
573
|
+
items: {
|
|
574
|
+
type: 'string',
|
|
575
|
+
minLength: 1,
|
|
604
576
|
},
|
|
605
577
|
},
|
|
606
578
|
],
|
|
607
579
|
},
|
|
580
|
+
shareStrategy: {
|
|
581
|
+
description: 'Strategy for resolving shared modules',
|
|
582
|
+
enum: ['version-first', 'loaded-first'],
|
|
583
|
+
type: 'string',
|
|
584
|
+
},
|
|
585
|
+
shared: {
|
|
586
|
+
$ref: '#/definitions/Shared',
|
|
587
|
+
},
|
|
608
588
|
dts: {
|
|
609
589
|
description: 'TypeScript declaration file generation options',
|
|
610
590
|
anyOf: [
|
|
@@ -733,6 +713,7 @@ exports.default = {
|
|
|
733
713
|
},
|
|
734
714
|
},
|
|
735
715
|
bridge: {
|
|
716
|
+
description: 'Bridge configuration options',
|
|
736
717
|
type: 'object',
|
|
737
718
|
properties: {
|
|
738
719
|
disableAlias: {
|
|
@@ -741,6 +722,86 @@ exports.default = {
|
|
|
741
722
|
default: false,
|
|
742
723
|
},
|
|
743
724
|
},
|
|
725
|
+
additionalProperties: false,
|
|
726
|
+
},
|
|
727
|
+
virtualRuntimeEntry: {
|
|
728
|
+
description: 'Uses a virtual module instead of a file for federation runtime entry',
|
|
729
|
+
type: 'boolean',
|
|
730
|
+
},
|
|
731
|
+
dev: {
|
|
732
|
+
description: 'Development mode configuration options',
|
|
733
|
+
anyOf: [
|
|
734
|
+
{
|
|
735
|
+
type: 'boolean',
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
type: 'object',
|
|
739
|
+
properties: {
|
|
740
|
+
disableLiveReload: {
|
|
741
|
+
description: 'Disable live reload for development mode',
|
|
742
|
+
type: 'boolean',
|
|
743
|
+
},
|
|
744
|
+
disableHotTypesReload: {
|
|
745
|
+
description: 'Disable hot types reload for development mode',
|
|
746
|
+
type: 'boolean',
|
|
747
|
+
},
|
|
748
|
+
disableDynamicRemoteTypeHints: {
|
|
749
|
+
description: 'Disable dynamic remote type hints for development mode',
|
|
750
|
+
type: 'boolean',
|
|
751
|
+
},
|
|
752
|
+
},
|
|
753
|
+
additionalProperties: false,
|
|
754
|
+
},
|
|
755
|
+
],
|
|
756
|
+
},
|
|
757
|
+
manifest: {
|
|
758
|
+
description: 'Manifest generation configuration options. IMPORTANT: When using this option, you must set a string value for `output.publicPath` in your webpack configuration.',
|
|
759
|
+
anyOf: [
|
|
760
|
+
{
|
|
761
|
+
type: 'boolean',
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
type: 'object',
|
|
765
|
+
properties: {
|
|
766
|
+
filePath: {
|
|
767
|
+
description: 'Path where the manifest file will be generated',
|
|
768
|
+
type: 'string',
|
|
769
|
+
},
|
|
770
|
+
disableAssetsAnalyze: {
|
|
771
|
+
description: 'Disable assets analyze for manifest generation',
|
|
772
|
+
type: 'boolean',
|
|
773
|
+
},
|
|
774
|
+
fileName: {
|
|
775
|
+
description: 'Name of the manifest file',
|
|
776
|
+
type: 'string',
|
|
777
|
+
},
|
|
778
|
+
additionalData: {
|
|
779
|
+
description: 'Function that provides additional data to the manifest',
|
|
780
|
+
instanceof: 'Function',
|
|
781
|
+
},
|
|
782
|
+
},
|
|
783
|
+
additionalProperties: false,
|
|
784
|
+
},
|
|
785
|
+
],
|
|
786
|
+
},
|
|
787
|
+
runtimePlugins: {
|
|
788
|
+
description: 'Runtime plugin file paths or package names to be included in federation runtime',
|
|
789
|
+
type: 'array',
|
|
790
|
+
items: {
|
|
791
|
+
type: 'string',
|
|
792
|
+
},
|
|
793
|
+
},
|
|
794
|
+
getPublicPath: {
|
|
795
|
+
description: 'Custom public path function for remote entry',
|
|
796
|
+
type: 'string',
|
|
797
|
+
},
|
|
798
|
+
dataPrefetch: {
|
|
799
|
+
description: 'Whether enable data prefetch',
|
|
800
|
+
type: 'boolean',
|
|
801
|
+
},
|
|
802
|
+
implementation: {
|
|
803
|
+
description: 'Bundler runtime path',
|
|
804
|
+
type: 'string',
|
|
744
805
|
},
|
|
745
806
|
},
|
|
746
807
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModuleFederationPlugin.js","sourceRoot":"","sources":["../../../../src/schemas/container/ModuleFederationPlugin.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ModuleFederationPlugin.js","sourceRoot":"","sources":["../../../../src/schemas/container/ModuleFederationPlugin.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export declare const validate: typeof
|
|
2
|
-
export default
|
|
3
|
-
declare function
|
|
1
|
+
export declare const validate: typeof a;
|
|
2
|
+
export default a;
|
|
3
|
+
declare function a(r: any, { instancePath: e, parentData: t, parentDataProperty: n, rootData: o, }?: {
|
|
4
4
|
instancePath?: string | undefined;
|
|
5
5
|
parentData: any;
|
|
6
6
|
parentDataProperty: any;
|