@module-federation/enhanced 0.2.0-canary.5 → 0.2.1
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/LICENSE +21 -0
- package/README.md +169 -0
- package/dist/package.json +85 -0
- package/dist/src/declarations/plugins/container/AsyncDependenciesBlock.d.ts +57 -0
- package/dist/src/declarations/plugins/container/Dependency.d.ts +285 -0
- package/dist/src/declarations/plugins/container/Module.d.ts +138 -0
- package/dist/src/declarations/plugins/container/ModuleFactory.d.ts +33 -0
- package/dist/src/declarations/plugins/container/ObjectDeserializerContext.d.ts +4 -0
- package/dist/src/declarations/plugins/container/StaticExportsDependency.d.ts +28 -0
- package/dist/src/declarations/plugins/container/Template.d.ts +198 -0
- package/dist/src/declarations/plugins/container/WebpackError.d.ts +32 -0
- package/dist/src/declarations/plugins/container/WebpackOptions.d.ts +140 -0
- package/dist/src/declarations/plugins/sharing/ConsumeSharedPlugin.d.ts +74 -0
- package/dist/src/declarations/plugins/sharing/ProvideSharedPlugin.d.ts +67 -0
- package/dist/src/declarations/plugins/sharing/SharePlugin.d.ts +78 -0
- package/dist/src/index.d.ts +14 -0
- package/dist/src/index.js +37 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/lib/Constants.js +125 -0
- package/dist/src/lib/Constants.js.map +1 -0
- package/dist/src/lib/RuntimeGlobals.d.ts +0 -0
- package/{src → dist/src}/lib/RuntimeGlobals.js +144 -74
- package/dist/src/lib/RuntimeGlobals.js.map +1 -0
- package/{src → dist/src}/lib/container/AsyncBoundaryPlugin.d.ts +3 -4
- package/dist/src/lib/container/AsyncBoundaryPlugin.js +198 -0
- package/dist/src/lib/container/AsyncBoundaryPlugin.js.map +1 -0
- package/dist/src/lib/container/ContainerEntryDependency.d.ts +24 -0
- package/dist/src/lib/container/ContainerEntryDependency.js +39 -0
- package/dist/src/lib/container/ContainerEntryDependency.js.map +1 -0
- package/dist/src/lib/container/ContainerEntryModule.d.ts +75 -0
- package/dist/src/lib/container/ContainerEntryModule.js +240 -0
- package/dist/src/lib/container/ContainerEntryModule.js.map +1 -0
- package/dist/src/lib/container/ContainerEntryModuleFactory.d.ts +15 -0
- package/dist/src/lib/container/ContainerEntryModuleFactory.js +30 -0
- package/dist/src/lib/container/ContainerEntryModuleFactory.js.map +1 -0
- package/dist/src/lib/container/ContainerExposedDependency.d.ts +19 -0
- package/dist/src/lib/container/ContainerExposedDependency.js +49 -0
- package/dist/src/lib/container/ContainerExposedDependency.js.map +1 -0
- package/dist/src/lib/container/ContainerPlugin.d.ts +13 -0
- package/dist/src/lib/container/ContainerPlugin.js +188 -0
- package/dist/src/lib/container/ContainerPlugin.js.map +1 -0
- package/{src → dist/src}/lib/container/ContainerReferencePlugin.d.ts +3 -3
- package/dist/src/lib/container/ContainerReferencePlugin.js +102 -0
- package/dist/src/lib/container/ContainerReferencePlugin.js.map +1 -0
- package/dist/src/lib/container/FallbackDependency.d.ts +15 -0
- package/dist/src/lib/container/FallbackDependency.js +47 -0
- package/dist/src/lib/container/FallbackDependency.js.map +1 -0
- package/dist/src/lib/container/FallbackItemDependency.d.ts +3 -0
- package/dist/src/lib/container/FallbackItemDependency.js +26 -0
- package/dist/src/lib/container/FallbackItemDependency.js.map +1 -0
- package/dist/src/lib/container/FallbackModule.d.ts +54 -0
- package/dist/src/lib/container/FallbackModule.js +152 -0
- package/dist/src/lib/container/FallbackModule.js.map +1 -0
- package/dist/src/lib/container/FallbackModuleFactory.d.ts +11 -0
- package/dist/src/lib/container/FallbackModuleFactory.js +28 -0
- package/dist/src/lib/container/FallbackModuleFactory.js.map +1 -0
- package/dist/src/lib/container/HoistContainerReferencesPlugin.d.ts +14 -0
- package/dist/src/lib/container/HoistContainerReferencesPlugin.js +64 -0
- package/dist/src/lib/container/HoistContainerReferencesPlugin.js.map +1 -0
- package/dist/src/lib/container/ModuleFederationPlugin.d.ts +17 -0
- package/dist/src/lib/container/ModuleFederationPlugin.js +133 -0
- package/dist/src/lib/container/ModuleFederationPlugin.js.map +1 -0
- package/dist/src/lib/container/RemoteModule.d.ts +90 -0
- package/dist/src/lib/container/RemoteModule.js +148 -0
- package/dist/src/lib/container/RemoteModule.js.map +1 -0
- package/dist/src/lib/container/RemoteRuntimeModule.d.ts +12 -0
- package/dist/src/lib/container/RemoteRuntimeModule.js +101 -0
- package/dist/src/lib/container/RemoteRuntimeModule.js.map +1 -0
- package/{src → dist/src}/lib/container/RemoteToExternalDependency.d.ts +3 -9
- package/dist/src/lib/container/RemoteToExternalDependency.js +26 -0
- package/dist/src/lib/container/RemoteToExternalDependency.js.map +1 -0
- package/dist/src/lib/container/constant.d.ts +3 -0
- package/dist/src/lib/container/constant.js +12 -0
- package/dist/src/lib/container/constant.js.map +1 -0
- package/{src → dist/src}/lib/container/options.d.ts +12 -4
- package/{src → dist/src}/lib/container/options.js +32 -42
- package/dist/src/lib/container/options.js.map +1 -0
- package/dist/src/lib/container/runtime/FederationRuntimeModule.d.ts +13 -0
- package/dist/src/lib/container/runtime/FederationRuntimeModule.js +49 -0
- package/dist/src/lib/container/runtime/FederationRuntimeModule.js.map +1 -0
- package/dist/src/lib/container/runtime/FederationRuntimePlugin.d.ts +17 -0
- package/dist/src/lib/container/runtime/FederationRuntimePlugin.js +209 -0
- package/dist/src/lib/container/runtime/FederationRuntimePlugin.js.map +1 -0
- package/dist/src/lib/container/runtime/RemoteEntryPlugin.d.ts +8 -0
- package/dist/src/lib/container/runtime/RemoteEntryPlugin.js +32 -0
- package/dist/src/lib/container/runtime/RemoteEntryPlugin.js.map +1 -0
- package/dist/src/lib/container/runtime/getFederationGlobal.d.ts +5 -0
- package/dist/src/lib/container/runtime/getFederationGlobal.js +26 -0
- package/dist/src/lib/container/runtime/getFederationGlobal.js.map +1 -0
- package/dist/src/lib/container/runtime/utils.d.ts +16 -0
- package/dist/src/lib/container/runtime/utils.js +83 -0
- package/dist/src/lib/container/runtime/utils.js.map +1 -0
- package/dist/src/lib/sharing/ConsumeSharedFallbackDependency.d.ts +3 -0
- package/dist/src/lib/sharing/ConsumeSharedFallbackDependency.js +26 -0
- package/dist/src/lib/sharing/ConsumeSharedFallbackDependency.js.map +1 -0
- package/dist/src/lib/sharing/ConsumeSharedModule.d.ts +99 -0
- package/dist/src/lib/sharing/ConsumeSharedModule.js +206 -0
- package/dist/src/lib/sharing/ConsumeSharedModule.js.map +1 -0
- package/dist/src/lib/sharing/ConsumeSharedPlugin.d.ts +30 -0
- package/dist/src/lib/sharing/ConsumeSharedPlugin.js +245 -0
- package/dist/src/lib/sharing/ConsumeSharedPlugin.js.map +1 -0
- package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.d.ts +31 -0
- package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.js +124 -0
- package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.js.map +1 -0
- package/dist/src/lib/sharing/ProvideForSharedDependency.d.ts +3 -0
- package/dist/src/lib/sharing/ProvideForSharedDependency.js +27 -0
- package/dist/src/lib/sharing/ProvideForSharedDependency.js.map +1 -0
- package/dist/src/lib/sharing/ProvideSharedDependency.d.ts +36 -0
- package/dist/src/lib/sharing/ProvideSharedDependency.js +70 -0
- package/dist/src/lib/sharing/ProvideSharedDependency.js.map +1 -0
- package/dist/src/lib/sharing/ProvideSharedModule.d.ts +67 -0
- package/dist/src/lib/sharing/ProvideSharedModule.js +186 -0
- package/dist/src/lib/sharing/ProvideSharedModule.js.map +1 -0
- package/dist/src/lib/sharing/ProvideSharedModuleFactory.d.ts +18 -0
- package/dist/src/lib/sharing/ProvideSharedModuleFactory.js +30 -0
- package/dist/src/lib/sharing/ProvideSharedModuleFactory.js.map +1 -0
- package/dist/src/lib/sharing/ProvideSharedPlugin.d.ts +47 -0
- package/dist/src/lib/sharing/ProvideSharedPlugin.js +195 -0
- package/dist/src/lib/sharing/ProvideSharedPlugin.js.map +1 -0
- package/dist/src/lib/sharing/SharePlugin.d.ts +41 -0
- package/dist/src/lib/sharing/SharePlugin.js +79 -0
- package/dist/src/lib/sharing/SharePlugin.js.map +1 -0
- package/dist/src/lib/sharing/ShareRuntimeModule.d.ts +14 -0
- package/dist/src/lib/sharing/ShareRuntimeModule.js +102 -0
- package/dist/src/lib/sharing/ShareRuntimeModule.js.map +1 -0
- package/dist/src/lib/sharing/resolveMatchedConfigs.d.ts +12 -0
- package/dist/src/lib/sharing/resolveMatchedConfigs.js +66 -0
- package/dist/src/lib/sharing/resolveMatchedConfigs.js.map +1 -0
- package/dist/src/lib/sharing/utils.d.ts +37 -0
- package/{src → dist/src}/lib/sharing/utils.js +109 -81
- package/dist/src/lib/sharing/utils.js.map +1 -0
- package/dist/src/rspack.d.ts +1 -0
- package/dist/src/rspack.js +6 -0
- package/dist/src/rspack.js.map +1 -0
- package/{src → dist/src}/runtime/AddRuntimeRequirementToPromiseExternalPlugin.d.ts +1 -1
- package/dist/src/runtime/AddRuntimeRequirementToPromiseExternalPlugin.js +19 -0
- package/dist/src/runtime/AddRuntimeRequirementToPromiseExternalPlugin.js.map +1 -0
- package/dist/src/runtime.d.ts +1 -0
- package/dist/src/runtime.js +18 -0
- package/dist/src/runtime.js.map +1 -0
- package/dist/src/schemas/container/ContainerPlugin.check.d.ts +7 -0
- package/dist/src/schemas/container/ContainerPlugin.check.js +2318 -0
- package/dist/src/schemas/container/ContainerPlugin.check.js.map +1 -0
- package/dist/src/schemas/container/ContainerPlugin.d.ts +289 -0
- package/dist/src/schemas/container/ContainerPlugin.js +326 -0
- package/dist/src/schemas/container/ContainerPlugin.js.map +1 -0
- package/dist/src/schemas/container/ContainerReferencePlugin.check.d.ts +7 -0
- package/dist/src/schemas/container/ContainerReferencePlugin.check.js +939 -0
- package/dist/src/schemas/container/ContainerReferencePlugin.check.js.map +1 -0
- package/dist/src/schemas/container/ContainerReferencePlugin.d.ts +87 -0
- package/dist/src/schemas/container/ContainerReferencePlugin.js +132 -0
- package/dist/src/schemas/container/ContainerReferencePlugin.js.map +1 -0
- package/dist/src/schemas/container/ModuleFederationPlugin.check.d.ts +9 -0
- package/dist/src/schemas/container/ModuleFederationPlugin.check.js +4001 -0
- package/dist/src/schemas/container/ModuleFederationPlugin.check.js.map +1 -0
- package/{src → dist/src}/schemas/container/ModuleFederationPlugin.d.ts +197 -4
- package/{src → dist/src}/schemas/container/ModuleFederationPlugin.js +349 -177
- package/dist/src/schemas/container/ModuleFederationPlugin.js.map +1 -0
- package/{src/schemas/container/ModuleFederationPlugin.check.d.ts → dist/src/schemas/sharing/ProviderSharedPlugin.check.d.ts} +2 -2
- package/dist/src/schemas/sharing/ProviderSharedPlugin.check.js +434 -0
- package/dist/src/schemas/sharing/ProviderSharedPlugin.check.js.map +1 -0
- package/dist/src/schemas/sharing/ProviderSharedPlugin.d.ts +104 -0
- package/dist/src/schemas/sharing/ProviderSharedPlugin.js +119 -0
- package/dist/src/schemas/sharing/ProviderSharedPlugin.js.map +1 -0
- package/dist/src/types/runtime.d.ts +7 -0
- package/dist/src/types/runtime.js +3 -0
- package/dist/src/types/runtime.js.map +1 -0
- package/dist/src/webpack.d.ts +2 -0
- package/dist/src/webpack.js +9 -0
- package/dist/src/webpack.js.map +1 -0
- package/dist/src/wrapper/AsyncBoundaryPlugin.d.ts +8 -0
- package/dist/src/wrapper/AsyncBoundaryPlugin.js +19 -0
- package/dist/src/wrapper/AsyncBoundaryPlugin.js.map +1 -0
- package/dist/src/wrapper/ConsumeSharedPlugin.d.ts +8 -0
- package/dist/src/wrapper/ConsumeSharedPlugin.js +19 -0
- package/dist/src/wrapper/ConsumeSharedPlugin.js.map +1 -0
- package/dist/src/wrapper/ContainerPlugin.d.ts +8 -0
- package/dist/src/wrapper/ContainerPlugin.js +19 -0
- package/dist/src/wrapper/ContainerPlugin.js.map +1 -0
- package/dist/src/wrapper/ContainerReferencePlugin.d.ts +8 -0
- package/dist/src/wrapper/ContainerReferencePlugin.js +19 -0
- package/dist/src/wrapper/ContainerReferencePlugin.js.map +1 -0
- package/dist/src/wrapper/FederationRuntimePlugin.d.ts +9 -0
- package/dist/src/wrapper/FederationRuntimePlugin.js +22 -0
- package/dist/src/wrapper/FederationRuntimePlugin.js.map +1 -0
- package/dist/src/wrapper/HoistContainerReferencesPlugin.d.ts +7 -0
- package/dist/src/wrapper/HoistContainerReferencesPlugin.js +19 -0
- package/dist/src/wrapper/HoistContainerReferencesPlugin.js.map +1 -0
- package/dist/src/wrapper/ModuleFederationPlugin.d.ts +8 -0
- package/dist/src/wrapper/ModuleFederationPlugin.js +39 -0
- package/dist/src/wrapper/ModuleFederationPlugin.js.map +1 -0
- package/dist/src/wrapper/ProvideSharedPlugin.d.ts +8 -0
- package/dist/src/wrapper/ProvideSharedPlugin.js +19 -0
- package/dist/src/wrapper/ProvideSharedPlugin.js.map +1 -0
- package/dist/src/wrapper/SharePlugin.d.ts +8 -0
- package/dist/src/wrapper/SharePlugin.js +19 -0
- package/dist/src/wrapper/SharePlugin.js.map +1 -0
- package/package.json +75 -7
- package/global.d.js +0 -14
- package/global.d.js.map +0 -1
- package/pullts.d.ts +0 -1
- package/src/declarations/plugins/container/AsyncDependenciesBlock.d.js +0 -14
- package/src/declarations/plugins/container/AsyncDependenciesBlock.d.js.map +0 -1
- package/src/declarations/plugins/container/ContainerPlugin.d.js +0 -12
- package/src/declarations/plugins/container/ContainerPlugin.d.js.map +0 -1
- package/src/declarations/plugins/container/ContainerReferencePlugin.d.js +0 -12
- package/src/declarations/plugins/container/ContainerReferencePlugin.d.js.map +0 -1
- package/src/declarations/plugins/container/Dependency.d.js +0 -14
- package/src/declarations/plugins/container/Dependency.d.js.map +0 -1
- package/src/declarations/plugins/container/Module.d.js +0 -3
- package/src/declarations/plugins/container/Module.d.js.map +0 -1
- package/src/declarations/plugins/container/ModuleFactory.d.js +0 -3
- package/src/declarations/plugins/container/ModuleFactory.d.js.map +0 -1
- package/src/declarations/plugins/container/ModuleFederationPlugin.d.js +0 -12
- package/src/declarations/plugins/container/ModuleFederationPlugin.d.js.map +0 -1
- package/src/declarations/plugins/container/ObjectDeserializerContext.d.js +0 -6
- package/src/declarations/plugins/container/ObjectDeserializerContext.d.js.map +0 -1
- package/src/declarations/plugins/container/StaticExportsDependency.d.js +0 -14
- package/src/declarations/plugins/container/StaticExportsDependency.d.js.map +0 -1
- package/src/declarations/plugins/container/Template.d.js +0 -4
- package/src/declarations/plugins/container/Template.d.js.map +0 -1
- package/src/declarations/plugins/container/WebpackError.d.js +0 -3
- package/src/declarations/plugins/container/WebpackError.d.js.map +0 -1
- package/src/declarations/plugins/container/WebpackOptions.d.js +0 -6
- package/src/declarations/plugins/container/WebpackOptions.d.js.map +0 -1
- package/src/declarations/plugins/sharing/ConsumeSharedPlugin.d.js +0 -12
- package/src/declarations/plugins/sharing/ConsumeSharedPlugin.d.js.map +0 -1
- package/src/declarations/plugins/sharing/ProvideSharedPlugin.d.js +0 -12
- package/src/declarations/plugins/sharing/ProvideSharedPlugin.d.js.map +0 -1
- package/src/declarations/plugins/sharing/SharePlugin.d.js +0 -12
- package/src/declarations/plugins/sharing/SharePlugin.d.js.map +0 -1
- package/src/index.d.ts +0 -7
- package/src/index.js +0 -47
- package/src/index.js.map +0 -1
- package/src/lib/Constants.js +0 -103
- package/src/lib/Constants.js.map +0 -1
- package/src/lib/RuntimeGlobals.d.ts +0 -1
- package/src/lib/RuntimeGlobals.js.map +0 -1
- package/src/lib/container/AsyncBoundaryPlugin.js +0 -184
- package/src/lib/container/AsyncBoundaryPlugin.js.map +0 -1
- package/src/lib/container/ContainerEntryDependency.d.js +0 -4
- package/src/lib/container/ContainerEntryDependency.d.js.map +0 -1
- package/src/lib/container/ContainerEntryDependency.d.ts +0 -20
- package/src/lib/container/ContainerEntryDependency.js +0 -47
- package/src/lib/container/ContainerEntryDependency.js.map +0 -1
- package/src/lib/container/ContainerEntryModule.d.js +0 -14
- package/src/lib/container/ContainerEntryModule.d.js.map +0 -1
- package/src/lib/container/ContainerEntryModule.d.ts +0 -85
- package/src/lib/container/ContainerEntryModule.js +0 -281
- package/src/lib/container/ContainerEntryModule.js.map +0 -1
- package/src/lib/container/ContainerEntryModuleFactory.d.js +0 -4
- package/src/lib/container/ContainerEntryModuleFactory.d.js.map +0 -1
- package/src/lib/container/ContainerEntryModuleFactory.d.ts +0 -10
- package/src/lib/container/ContainerEntryModuleFactory.js +0 -37
- package/src/lib/container/ContainerEntryModuleFactory.js.map +0 -1
- package/src/lib/container/ContainerExposedDependency.d.js +0 -4
- package/src/lib/container/ContainerExposedDependency.d.js.map +0 -1
- package/src/lib/container/ContainerExposedDependency.d.ts +0 -26
- package/src/lib/container/ContainerExposedDependency.js +0 -57
- package/src/lib/container/ContainerExposedDependency.js.map +0 -1
- package/src/lib/container/ContainerPlugin.d.js +0 -4
- package/src/lib/container/ContainerPlugin.d.js.map +0 -1
- package/src/lib/container/ContainerPlugin.d.ts +0 -11
- package/src/lib/container/ContainerPlugin.js +0 -92
- package/src/lib/container/ContainerPlugin.js.map +0 -1
- package/src/lib/container/ContainerReferencePlugin.d.js +0 -4
- package/src/lib/container/ContainerReferencePlugin.d.js.map +0 -1
- package/src/lib/container/ContainerReferencePlugin.js +0 -141
- package/src/lib/container/ContainerReferencePlugin.js.map +0 -1
- package/src/lib/container/FallbackDependency.d.js +0 -14
- package/src/lib/container/FallbackDependency.d.js.map +0 -1
- package/src/lib/container/FallbackDependency.d.ts +0 -25
- package/src/lib/container/FallbackDependency.js +0 -59
- package/src/lib/container/FallbackDependency.js.map +0 -1
- package/src/lib/container/FallbackItemDependency.d.js +0 -4
- package/src/lib/container/FallbackItemDependency.d.js.map +0 -1
- package/src/lib/container/FallbackItemDependency.d.ts +0 -10
- package/src/lib/container/FallbackItemDependency.js +0 -37
- package/src/lib/container/FallbackItemDependency.js.map +0 -1
- package/src/lib/container/FallbackModule.d.js +0 -4
- package/src/lib/container/FallbackModule.d.js.map +0 -1
- package/src/lib/container/FallbackModule.d.ts +0 -73
- package/src/lib/container/FallbackModule.js +0 -153
- package/src/lib/container/FallbackModule.js.map +0 -1
- package/src/lib/container/FallbackModuleFactory.d.js +0 -4
- package/src/lib/container/FallbackModuleFactory.d.js.map +0 -1
- package/src/lib/container/FallbackModuleFactory.d.ts +0 -10
- package/src/lib/container/FallbackModuleFactory.js +0 -35
- package/src/lib/container/FallbackModuleFactory.js.map +0 -1
- package/src/lib/container/HoistContainerReferencesPlugin.d.ts +0 -19
- package/src/lib/container/HoistContainerReferencesPlugin.js +0 -78
- package/src/lib/container/HoistContainerReferencesPlugin.js.map +0 -1
- package/src/lib/container/ModuleFederationPlugin.d.js +0 -4
- package/src/lib/container/ModuleFederationPlugin.d.js.map +0 -1
- package/src/lib/container/ModuleFederationPlugin.d.ts +0 -16
- package/src/lib/container/ModuleFederationPlugin.js +0 -85
- package/src/lib/container/ModuleFederationPlugin.js.map +0 -1
- package/src/lib/container/ModuleFederationPluginTypes.d.js +0 -12
- package/src/lib/container/ModuleFederationPluginTypes.d.js.map +0 -1
- package/src/lib/container/RemoteModule.d.js +0 -13
- package/src/lib/container/RemoteModule.d.js.map +0 -1
- package/src/lib/container/RemoteModule.d.ts +0 -76
- package/src/lib/container/RemoteModule.js +0 -151
- package/src/lib/container/RemoteModule.js.map +0 -1
- package/src/lib/container/RemoteRuntimeModule.d.js +0 -13
- package/src/lib/container/RemoteRuntimeModule.d.js.map +0 -1
- package/src/lib/container/RemoteRuntimeModule.d.ts +0 -9
- package/src/lib/container/RemoteRuntimeModule.js +0 -124
- package/src/lib/container/RemoteRuntimeModule.js.map +0 -1
- package/src/lib/container/RemoteToExternalDependency.d.js +0 -19
- package/src/lib/container/RemoteToExternalDependency.d.js.map +0 -1
- package/src/lib/container/RemoteToExternalDependency.js +0 -37
- package/src/lib/container/RemoteToExternalDependency.js.map +0 -1
- package/src/lib/container/options.d.js +0 -6
- package/src/lib/container/options.d.js.map +0 -1
- package/src/lib/container/options.js.map +0 -1
- package/src/lib/inversion/ContainerInversionPlugin.d.ts +0 -1
- package/src/lib/inversion/ContainerInversionPlugin.js +0 -3
- package/src/lib/inversion/ContainerInversionPlugin.js.map +0 -1
- package/src/lib/sharing/ConsumeSharedFallbackDependency.d.js +0 -4
- package/src/lib/sharing/ConsumeSharedFallbackDependency.d.js.map +0 -1
- package/src/lib/sharing/ConsumeSharedFallbackDependency.d.ts +0 -10
- package/src/lib/sharing/ConsumeSharedFallbackDependency.js +0 -37
- package/src/lib/sharing/ConsumeSharedFallbackDependency.js.map +0 -1
- package/src/lib/sharing/ConsumeSharedModule.d.js +0 -4
- package/src/lib/sharing/ConsumeSharedModule.d.js.map +0 -1
- package/src/lib/sharing/ConsumeSharedModule.d.ts +0 -106
- package/src/lib/sharing/ConsumeSharedModule.js +0 -235
- package/src/lib/sharing/ConsumeSharedModule.js.map +0 -1
- package/src/lib/sharing/ConsumeSharedPlugin.d.js +0 -4
- package/src/lib/sharing/ConsumeSharedPlugin.d.js.map +0 -1
- package/src/lib/sharing/ConsumeSharedPlugin.d.ts +0 -8
- package/src/lib/sharing/ConsumeSharedPlugin.js +0 -274
- package/src/lib/sharing/ConsumeSharedPlugin.js.map +0 -1
- package/src/lib/sharing/ConsumeSharedRuntimeModule.d.js +0 -4
- package/src/lib/sharing/ConsumeSharedRuntimeModule.d.js.map +0 -1
- package/src/lib/sharing/ConsumeSharedRuntimeModule.d.ts +0 -13
- package/src/lib/sharing/ConsumeSharedRuntimeModule.js +0 -294
- package/src/lib/sharing/ConsumeSharedRuntimeModule.js.map +0 -1
- package/src/lib/sharing/ProvideForSharedDependency.d.js +0 -4
- package/src/lib/sharing/ProvideForSharedDependency.d.js.map +0 -1
- package/src/lib/sharing/ProvideForSharedDependency.d.ts +0 -11
- package/src/lib/sharing/ProvideForSharedDependency.js +0 -38
- package/src/lib/sharing/ProvideForSharedDependency.js.map +0 -1
- package/src/lib/sharing/ProvideSharedDependency.d.js +0 -14
- package/src/lib/sharing/ProvideSharedDependency.d.js.map +0 -1
- package/src/lib/sharing/ProvideSharedDependency.d.ts +0 -32
- package/src/lib/sharing/ProvideSharedDependency.js +0 -69
- package/src/lib/sharing/ProvideSharedDependency.js.map +0 -1
- package/src/lib/sharing/ProvideSharedModule.d.js +0 -4
- package/src/lib/sharing/ProvideSharedModule.d.js.map +0 -1
- package/src/lib/sharing/ProvideSharedModule.d.ts +0 -79
- package/src/lib/sharing/ProvideSharedModule.js +0 -203
- package/src/lib/sharing/ProvideSharedModule.js.map +0 -1
- package/src/lib/sharing/ProvideSharedModuleFactory.d.js +0 -4
- package/src/lib/sharing/ProvideSharedModuleFactory.d.js.map +0 -1
- package/src/lib/sharing/ProvideSharedModuleFactory.d.ts +0 -11
- package/src/lib/sharing/ProvideSharedModuleFactory.js +0 -36
- package/src/lib/sharing/ProvideSharedModuleFactory.js.map +0 -1
- package/src/lib/sharing/ProvideSharedPlugin.d.js +0 -4
- package/src/lib/sharing/ProvideSharedPlugin.d.js.map +0 -1
- package/src/lib/sharing/ProvideSharedPlugin.d.ts +0 -34
- package/src/lib/sharing/ProvideSharedPlugin.js +0 -182
- package/src/lib/sharing/ProvideSharedPlugin.js.map +0 -1
- package/src/lib/sharing/SharePlugin.d.js +0 -4
- package/src/lib/sharing/SharePlugin.d.js.map +0 -1
- package/src/lib/sharing/SharePlugin.d.ts +0 -15
- package/src/lib/sharing/SharePlugin.js +0 -77
- package/src/lib/sharing/SharePlugin.js.map +0 -1
- package/src/lib/sharing/ShareRuntimeModule.d.js +0 -4
- package/src/lib/sharing/ShareRuntimeModule.d.js.map +0 -1
- package/src/lib/sharing/ShareRuntimeModule.d.ts +0 -9
- package/src/lib/sharing/ShareRuntimeModule.js +0 -161
- package/src/lib/sharing/ShareRuntimeModule.js.map +0 -1
- package/src/lib/sharing/resolveMatchedConfigs.d.js +0 -6
- package/src/lib/sharing/resolveMatchedConfigs.d.js.map +0 -1
- package/src/lib/sharing/resolveMatchedConfigs.d.ts +0 -8
- package/src/lib/sharing/resolveMatchedConfigs.js +0 -73
- package/src/lib/sharing/resolveMatchedConfigs.js.map +0 -1
- package/src/lib/sharing/utils.d.js +0 -6
- package/src/lib/sharing/utils.d.js.map +0 -1
- package/src/lib/sharing/utils.d.ts +0 -33
- package/src/lib/sharing/utils.js.map +0 -1
- package/src/runtime/AddRuntimeRequirementToPromiseExternalPlugin.js +0 -34
- package/src/runtime/AddRuntimeRequirementToPromiseExternalPlugin.js.map +0 -1
- package/src/runtime/ModuleInfoRuntimeModule.d.ts +0 -16
- package/src/runtime/ModuleInfoRuntimeModule.js +0 -88
- package/src/runtime/ModuleInfoRuntimeModule.js.map +0 -1
- package/src/runtime/ModuleInfoRuntimePlugin.d.ts +0 -5
- package/src/runtime/ModuleInfoRuntimePlugin.js +0 -29
- package/src/runtime/ModuleInfoRuntimePlugin.js.map +0 -1
- package/src/schemas/container/ModuleFederationPlugin.check.js +0 -2245
- package/src/schemas/container/ModuleFederationPlugin.check.js.map +0 -1
- package/src/schemas/container/ModuleFederationPlugin.js.map +0 -1
- /package/{src → dist/src}/lib/Constants.d.ts +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/AsyncDependenciesBlock.d.ts"],"sourcesContent":["export class AsyncDependenciesBlock extends DependenciesBlock {\n /**\n * @param {(ChunkGroupOptions & { entryOptions?: EntryOptions }) | null} groupOptions options for the group\n * @param {(DependencyLocation | null)=} loc the line of code\n * @param {(string | null)=} request the request\n */\n constructor(\n groupOptions:\n | (ChunkGroupOptions & {\n entryOptions?: EntryOptions;\n })\n | null,\n loc?: (DependencyLocation | null) | undefined,\n request?: (string | null) | undefined,\n );\n groupOptions: import('./ChunkGroup').RawChunkGroupOptions & {\n name?: string | undefined;\n } & {\n entryOptions?: import('./Entrypoint').EntryOptions | undefined;\n };\n loc: import('./Dependency').DependencyLocation | null | undefined;\n request: string | null | undefined;\n _stringifiedGroupOptions: string | undefined;\n /**\n * @param {string | undefined} value The new chunk name\n * @returns {void}\n */\n set chunkName(arg: string | undefined);\n /**\n * @returns {string | undefined} The name of the chunk\n */\n get chunkName(): string | undefined;\n set module(arg: any);\n get module(): any;\n}\ndeclare namespace AsyncDependenciesBlock {\n export {\n ChunkGraph,\n ChunkGroup,\n ChunkGroupOptions,\n DependencyLocation,\n UpdateHashContext,\n EntryOptions,\n Module,\n ObjectDeserializerContext,\n ObjectSerializerContext,\n Hash,\n };\n}\nimport DependenciesBlock = require('./DependenciesBlock');\ntype ChunkGroupOptions = import('./ChunkGroup').ChunkGroupOptions;\ntype EntryOptions = import('./Entrypoint').EntryOptions;\ntype DependencyLocation = import('./Dependency').DependencyLocation;\ntype ChunkGraph = import('./ChunkGraph');\ntype ChunkGroup = import('./ChunkGroup');\ntype UpdateHashContext = import('./Dependency').UpdateHashContext;\ntype Hash = import('./util/Hash');\n"],"names":["AsyncDependenciesBlock","DependenciesBlock"],"mappings":";;;;+BAAaA;;;eAAAA;;;AAAN,IAAA,AAAMA,yBAAN,MAAMA,+BAA+BC;AAkC5C"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file was automatically generated.
|
|
3
|
-
* DO NOT MODIFY BY HAND.
|
|
4
|
-
* Run `yarn special-lint-fix` to update
|
|
5
|
-
*/ /**
|
|
6
|
-
* Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.
|
|
7
|
-
*/ "use strict";
|
|
8
|
-
Object.defineProperty(exports, "__esModule", {
|
|
9
|
-
value: true
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
//# sourceMappingURL=ContainerPlugin.d.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/ContainerPlugin.d.ts"],"sourcesContent":["/*\n * This file was automatically generated.\n * DO NOT MODIFY BY HAND.\n * Run `yarn special-lint-fix` to update\n */\n\n/**\n * Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.\n */\nexport type Exposes = (ExposesItem | ExposesObject)[] | ExposesObject;\n/**\n * Module that should be exposed by this container.\n */\nexport type ExposesItem = string;\n/**\n * Modules that should be exposed by this container.\n */\nexport type ExposesItems = ExposesItem[];\n/**\n * Add a container for define/require functions in the AMD module.\n */\nexport type AmdContainer = string;\n/**\n * Add a comment in the UMD wrapper.\n */\nexport type AuxiliaryComment = string | LibraryCustomUmdCommentObject;\n/**\n * Specify which export should be exposed as library.\n */\nexport type LibraryExport = string[] | string;\n/**\n * The name of the library (some types allow unnamed libraries too).\n */\nexport type LibraryName = string[] | string | LibraryCustomUmdObject;\n/**\n * Type of library (types included by default are 'var', 'module', 'assign', 'assign-properties', 'this', 'window', 'self', 'global', 'commonjs', 'commonjs2', 'commonjs-module', 'commonjs-static', 'amd', 'amd-require', 'umd', 'umd2', 'jsonp', 'system', but others might be added by plugins).\n */\nexport type LibraryType =\n | (\n | 'var'\n | 'module'\n | 'assign'\n | 'assign-properties'\n | 'this'\n | 'window'\n | 'self'\n | 'global'\n | 'commonjs'\n | 'commonjs2'\n | 'commonjs-module'\n | 'commonjs-static'\n | 'amd'\n | 'amd-require'\n | 'umd'\n | 'umd2'\n | 'jsonp'\n | 'system'\n )\n | string;\n/**\n * If `output.libraryTarget` is set to umd and `output.library` is set, setting this to true will name the AMD module.\n */\nexport type UmdNamedDefine = boolean;\n/**\n * The name of the runtime chunk. If set a runtime chunk with this name is created or an existing entrypoint is used as runtime.\n */\nexport type EntryRuntime = false | string;\n\nexport interface ContainerPluginOptions {\n /**\n * Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.\n */\n exposes: Exposes;\n /**\n * The filename for this container relative path inside the `output.path` directory.\n */\n filename?: string;\n /**\n * Options for library.\n */\n library?: LibraryOptions;\n /**\n * The name for this container.\n */\n name: string;\n /**\n * The name of the runtime chunk. If set a runtime chunk with this name is created or an existing entrypoint is used as runtime.\n */\n runtime?: EntryRuntime;\n /**\n * The name of the share scope which is shared with the host (defaults to 'default').\n */\n shareScope?: string;\n}\n/**\n * Modules that should be exposed by this container. Property names are used as public paths.\n */\nexport interface ExposesObject {\n /**\n * Modules that should be exposed by this container.\n */\n [k: string]: ExposesConfig | ExposesItem | ExposesItems;\n}\n/**\n * Advanced configuration for modules that should be exposed by this container.\n */\nexport interface ExposesConfig {\n /**\n * Request to a module that should be exposed by this container.\n */\n import: ExposesItem | ExposesItems;\n /**\n * Custom chunk name for the exposed module.\n */\n name?: string;\n}\n/**\n * Options for library.\n */\nexport interface LibraryOptions {\n /**\n * Add a container for define/require functions in the AMD module.\n */\n amdContainer?: AmdContainer;\n /**\n * Add a comment in the UMD wrapper.\n */\n auxiliaryComment?: AuxiliaryComment;\n /**\n * Specify which export should be exposed as library.\n */\n export?: LibraryExport;\n /**\n * The name of the library (some types allow unnamed libraries too).\n */\n name?: LibraryName;\n /**\n * Type of library (types included by default are 'var', 'module', 'assign', 'assign-properties', 'this', 'window', 'self', 'global', 'commonjs', 'commonjs2', 'commonjs-module', 'commonjs-static', 'amd', 'amd-require', 'umd', 'umd2', 'jsonp', 'system', but others might be added by plugins).\n */\n type: LibraryType;\n /**\n * If `output.libraryTarget` is set to umd and `output.library` is set, setting this to true will name the AMD module.\n */\n umdNamedDefine?: UmdNamedDefine;\n}\n/**\n * Set explicit comments for `commonjs`, `commonjs2`, `amd`, and `root`.\n */\nexport interface LibraryCustomUmdCommentObject {\n /**\n * Set comment for `amd` section in UMD.\n */\n amd?: string;\n /**\n * Set comment for `commonjs` (exports) section in UMD.\n */\n commonjs?: string;\n /**\n * Set comment for `commonjs2` (module.exports) section in UMD.\n */\n commonjs2?: string;\n /**\n * Set comment for `root` (global variable) section in UMD.\n */\n root?: string;\n}\n/**\n * Description object for all UMD variants of the library name.\n */\nexport interface LibraryCustomUmdObject {\n /**\n * Name of the exposed AMD library in the UMD.\n */\n amd?: string;\n /**\n * Name of the exposed commonjs export in the UMD.\n */\n commonjs?: string;\n /**\n * Name of the property exposed globally by a UMD library.\n */\n root?: string[] | string;\n}\n"],"names":[],"mappings":"AAAA;;;;CAIC,GAED;;CAEC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file was automatically generated.
|
|
3
|
-
* DO NOT MODIFY BY HAND.
|
|
4
|
-
* Run `yarn special-lint-fix` to update
|
|
5
|
-
*/ /**
|
|
6
|
-
* Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value).
|
|
7
|
-
*/ "use strict";
|
|
8
|
-
Object.defineProperty(exports, "__esModule", {
|
|
9
|
-
value: true
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
//# sourceMappingURL=ContainerReferencePlugin.d.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/ContainerReferencePlugin.d.ts"],"sourcesContent":["/*\n * This file was automatically generated.\n * DO NOT MODIFY BY HAND.\n * Run `yarn special-lint-fix` to update\n */\n\n/**\n * Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value).\n */\nexport type ExternalsType =\n | 'var'\n | 'module'\n | 'assign'\n | 'this'\n | 'window'\n | 'self'\n | 'global'\n | 'commonjs'\n | 'commonjs2'\n | 'commonjs-module'\n | 'commonjs-static'\n | 'amd'\n | 'amd-require'\n | 'umd'\n | 'umd2'\n | 'jsonp'\n | 'system'\n | 'promise'\n | 'import'\n | 'script'\n | 'node-commonjs';\n/**\n * Container locations and request scopes from which modules should be resolved and loaded at runtime. When provided, property name is used as request scope, otherwise request scope is automatically inferred from container location.\n */\nexport type Remotes = (RemotesItem | RemotesObject)[] | RemotesObject;\n/**\n * Container location from which modules should be resolved and loaded at runtime.\n */\nexport type RemotesItem = string;\n/**\n * Container locations from which modules should be resolved and loaded at runtime.\n */\nexport type RemotesItems = RemotesItem[];\n\nexport interface ContainerReferencePluginOptions {\n /**\n * The external type of the remote containers.\n */\n remoteType: ExternalsType;\n /**\n * Container locations and request scopes from which modules should be resolved and loaded at runtime. When provided, property name is used as request scope, otherwise request scope is automatically inferred from container location.\n */\n remotes: Remotes;\n /**\n * The name of the share scope shared with all remotes (defaults to 'default').\n */\n shareScope?: string;\n}\n/**\n * Container locations from which modules should be resolved and loaded at runtime. Property names are used as request scopes.\n */\nexport interface RemotesObject {\n /**\n * Container locations from which modules should be resolved and loaded at runtime.\n */\n [k: string]: RemotesConfig | RemotesItem | RemotesItems;\n}\n/**\n * Advanced configuration for container locations from which modules should be resolved and loaded at runtime.\n */\nexport interface RemotesConfig {\n /**\n * Container locations from which modules should be resolved and loaded at runtime.\n */\n external: RemotesItem | RemotesItems;\n /**\n * The name of the share scope shared with this remote.\n */\n shareScope?: string;\n}\n"],"names":[],"mappings":"AAAA;;;;CAIC,GAED;;CAEC"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "Dependency", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return Dependency;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
let Dependency = class Dependency {
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
//# sourceMappingURL=Dependency.d.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/Dependency.d.ts"],"sourcesContent":["export class Dependency {\n /** @type {Module | undefined} */\n _parentModule: Module | undefined;\n /** @type {DependenciesBlock | undefined} */\n _parentDependenciesBlock: DependenciesBlock | undefined;\n /** @type {number} */\n _parentDependenciesBlockIndex: number;\n /** @type {boolean} */\n weak: boolean;\n /** @type {boolean} */\n optional: boolean;\n _locSL: number;\n _locSC: number;\n _locEL: number;\n _locEC: number;\n _locI: any;\n _locN: any;\n _loc:\n | DependencyLocation\n | (SyntheticDependencyLocation & RealDependencyLocation)\n | undefined;\n /**\n * @returns {string} a display name for the type of dependency\n */\n get type(): string;\n /**\n * @returns {string} a dependency category, typical categories are \"commonjs\", \"amd\", \"esm\"\n */\n get category(): string;\n set loc(arg: DependencyLocation);\n /**\n * @returns {DependencyLocation} location\n */\n get loc(): DependencyLocation;\n /**\n * @param {number} startLine start line\n * @param {number} startColumn start column\n * @param {number} endLine end line\n * @param {number} endColumn end column\n */\n setLoc(\n startLine: number,\n startColumn: number,\n endLine: number,\n endColumn: number,\n ): void;\n /**\n * @returns {string | undefined} a request context\n */\n getContext(): string | undefined;\n /**\n * @returns {string | null} an identifier to merge equal requests\n */\n getResourceIdentifier(): string | null;\n /**\n * @returns {boolean | TRANSITIVE} true, when changes to the referenced module could affect the referencing module; TRANSITIVE, when changes to the referenced module could affect referencing modules of the referencing module\n */\n couldAffectReferencingModule(): boolean | typeof TRANSITIVE;\n /**\n * Returns the referenced module and export\n * @deprecated\n * @param {ModuleGraph} moduleGraph module graph\n * @returns {never} throws error\n */\n getReference(moduleGraph: ModuleGraph): never;\n /**\n * Returns list of exports referenced by this dependency\n * @param {ModuleGraph} moduleGraph module graph\n * @param {RuntimeSpec} runtime the runtime for which the module is analysed\n * @returns {(string[] | ReferencedExport)[]} referenced exports\n */\n getReferencedExports(\n moduleGraph: ModuleGraph,\n runtime: RuntimeSpec,\n ): (string[] | ReferencedExport)[];\n /**\n * @param {ModuleGraph} moduleGraph module graph\n * @returns {null | false | function(ModuleGraphConnection, RuntimeSpec): ConnectionState} function to determine if the connection is active\n */\n getCondition(\n moduleGraph: ModuleGraph,\n ):\n | false\n | ((arg0: ModuleGraphConnection, arg1: RuntimeSpec) => ConnectionState)\n | null;\n /**\n * Returns the exported names\n * @param {ModuleGraph} moduleGraph module graph\n * @returns {ExportsSpec | undefined} export names\n */\n getExports(moduleGraph: ModuleGraph): ExportsSpec | undefined;\n /**\n * Returns warnings\n * @param {ModuleGraph} moduleGraph module graph\n * @returns {WebpackError[] | null | undefined} warnings\n */\n getWarnings(moduleGraph: ModuleGraph): WebpackError[] | null | undefined;\n /**\n * Returns errors\n * @param {ModuleGraph} moduleGraph module graph\n * @returns {WebpackError[] | null | undefined} errors\n */\n getErrors(moduleGraph: ModuleGraph): WebpackError[] | null | undefined;\n /**\n * Update the hash\n * @param {Hash} hash hash to be updated\n * @param {UpdateHashContext} context context\n * @returns {void}\n */\n updateHash(hash: Hash, context: UpdateHashContext): void;\n /**\n * implement this method to allow the occurrence order plugin to count correctly\n * @returns {number} count how often the id is used in this dependency\n */\n getNumberOfIdOccurrences(): number;\n /**\n * @param {ModuleGraph} moduleGraph the module graph\n * @returns {ConnectionState} how this dependency connects the module to referencing modules\n */\n getModuleEvaluationSideEffectsState(\n moduleGraph: ModuleGraph,\n ): ConnectionState;\n /**\n * @param {string} context context directory\n * @returns {Module | null} a module\n */\n createIgnoredModule(context: string): Module | null;\n /**\n * @param {ObjectSerializerContext} context context\n */\n serialize({ write }: ObjectSerializerContext): void;\n /**\n * @param {ObjectDeserializerContext} context context\n */\n deserialize({ read }: ObjectDeserializerContext): void;\n set module(arg: any);\n get module(): any;\n get disconnect(): any;\n}\ndeclare namespace Dependency {\n export {\n NO_EXPORTS_REFERENCED,\n EXPORTS_OBJECT_REFERENCED,\n TRANSITIVE,\n Source,\n ChunkGraph,\n DependenciesBlock,\n DependencyTemplates,\n Module,\n ModuleGraph,\n ModuleGraphConnection,\n ConnectionState,\n RuntimeTemplate,\n WebpackError,\n ObjectDeserializerContext,\n ObjectSerializerContext,\n Hash,\n RuntimeSpec,\n UpdateHashContext,\n SourcePosition,\n RealDependencyLocation,\n SyntheticDependencyLocation,\n DependencyLocation,\n ExportSpec,\n ExportsSpec,\n ReferencedExport,\n };\n}\ntype Module = import('./Module');\ntype DependenciesBlock = import('./DependenciesBlock');\ntype DependencyLocation = SyntheticDependencyLocation | RealDependencyLocation;\ntype SyntheticDependencyLocation = {\n name: string;\n index?: number | undefined;\n};\ntype RealDependencyLocation = {\n start: SourcePosition;\n end?: SourcePosition | undefined;\n index?: number | undefined;\n};\n\ndeclare const TRANSITIVE: unique symbol;\ntype ModuleGraph = import('./ModuleGraph');\ntype RuntimeSpec = import('./util/runtime').RuntimeSpec;\ntype ReferencedExport = {\n /**\n * name of the referenced export\n */\n name: string[];\n /**\n * when false, referenced export can not be mangled, defaults to true\n */\n canMangle?: boolean | undefined;\n};\ntype ModuleGraphConnection = import('./ModuleGraphConnection');\ntype ConnectionState = import('./ModuleGraphConnection').ConnectionState;\ntype ExportsSpec = {\n /**\n * exported names, true for unknown exports or null for no exports\n */\n exports: (string | ExportSpec)[] | true | null;\n /**\n * when exports = true, list of unaffected exports\n */\n excludeExports?: Set<string> | undefined;\n /**\n * list of maybe prior exposed, but now hidden exports\n */\n hideExports?: Set<string> | undefined;\n /**\n * when reexported: from which module\n */\n from?: ModuleGraphConnection | undefined;\n /**\n * when reexported: with which priority\n */\n priority?: number | undefined;\n /**\n * can the export be renamed (defaults to true)\n */\n canMangle?: boolean | undefined;\n /**\n * are the exports terminal bindings that should be checked for export star conflicts\n */\n terminalBinding?: boolean | undefined;\n /**\n * module on which the result depends on\n */\n dependencies?: Module[] | undefined;\n};\ntype WebpackError = import('./WebpackError');\ntype Hash = import('./util/Hash');\ntype UpdateHashContext = {\n chunkGraph: ChunkGraph;\n runtime: RuntimeSpec;\n runtimeTemplate?: RuntimeTemplate | undefined;\n};\ntype ObjectSerializerContext =\n import('./serialization/ObjectMiddleware').ObjectSerializerContext;\ntype ObjectDeserializerContext =\n import('./serialization/ObjectMiddleware').ObjectDeserializerContext;\ndeclare const NO_EXPORTS_REFERENCED: string[][];\ndeclare const EXPORTS_OBJECT_REFERENCED: string[][];\ntype Source = import('webpack-sources').Source;\ntype ChunkGraph = import('./ChunkGraph');\ntype DependencyTemplates = import('./DependencyTemplates');\ntype RuntimeTemplate = import('./RuntimeTemplate');\ntype SourcePosition = {\n line: number;\n column?: number | undefined;\n};\ntype ExportSpec = {\n /**\n * the name of the export\n */\n name: string;\n /**\n * can the export be renamed (defaults to true)\n */\n canMangle?: boolean | undefined;\n /**\n * is the export a terminal binding that should be checked for export star conflicts\n */\n terminalBinding?: boolean | undefined;\n /**\n * nested exports\n */\n exports?: (string | ExportSpec)[] | undefined;\n /**\n * when reexported: from which module\n */\n from?: ModuleGraphConnection | undefined;\n /**\n * when reexported: from which export\n */\n export?: (string[] | null) | undefined;\n /**\n * when reexported: with which priority\n */\n priority?: number | undefined;\n /**\n * export is not visible, because another export blends over it\n */\n hidden?: boolean | undefined;\n};\n"],"names":["Dependency"],"mappings":";;;;+BAAaA;;;eAAAA;;;AAAN,IAAA,AAAMA,aAAN,MAAMA;AA0Ib"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/Module.d.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/ModuleFactory.d.ts"],"names":[],"mappings":""}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file was automatically generated.
|
|
3
|
-
* DO NOT MODIFY BY HAND.
|
|
4
|
-
* Run `yarn special-lint-fix` to update
|
|
5
|
-
*/ /**
|
|
6
|
-
* Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.
|
|
7
|
-
*/ "use strict";
|
|
8
|
-
Object.defineProperty(exports, "__esModule", {
|
|
9
|
-
value: true
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
//# sourceMappingURL=ModuleFederationPlugin.d.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/ModuleFederationPlugin.d.ts"],"sourcesContent":["/*\n * This file was automatically generated.\n * DO NOT MODIFY BY HAND.\n * Run `yarn special-lint-fix` to update\n */\n\n/**\n * Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.\n */\nexport type Exposes = (ExposesItem | ExposesObject)[] | ExposesObject;\n/**\n * Module that should be exposed by this container.\n */\nexport type ExposesItem = string;\n/**\n * Modules that should be exposed by this container.\n */\nexport type ExposesItems = ExposesItem[];\n/**\n * Add a container for define/require functions in the AMD module.\n */\nexport type AmdContainer = string;\n/**\n * Add a comment in the UMD wrapper.\n */\nexport type AuxiliaryComment = string | LibraryCustomUmdCommentObject;\n/**\n * Specify which export should be exposed as library.\n */\nexport type LibraryExport = string[] | string;\n/**\n * The name of the library (some types allow unnamed libraries too).\n */\nexport type LibraryName = string[] | string | LibraryCustomUmdObject;\n/**\n * Type of library (types included by default are 'var', 'module', 'assign', 'assign-properties', 'this', 'window', 'self', 'global', 'commonjs', 'commonjs2', 'commonjs-module', 'commonjs-static', 'amd', 'amd-require', 'umd', 'umd2', 'jsonp', 'system', but others might be added by plugins).\n */\nexport type LibraryType =\n | (\n | 'var'\n | 'module'\n | 'assign'\n | 'assign-properties'\n | 'this'\n | 'window'\n | 'self'\n | 'global'\n | 'commonjs'\n | 'commonjs2'\n | 'commonjs-module'\n | 'commonjs-static'\n | 'amd'\n | 'amd-require'\n | 'umd'\n | 'umd2'\n | 'jsonp'\n | 'system'\n )\n | string;\n/**\n * If `output.libraryTarget` is set to umd and `output.library` is set, setting this to true will name the AMD module.\n */\nexport type UmdNamedDefine = boolean;\n/**\n * Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value).\n */\nexport type ExternalsType =\n | 'var'\n | 'module'\n | 'assign'\n | 'this'\n | 'window'\n | 'self'\n | 'global'\n | 'commonjs'\n | 'commonjs2'\n | 'commonjs-module'\n | 'commonjs-static'\n | 'amd'\n | 'amd-require'\n | 'umd'\n | 'umd2'\n | 'jsonp'\n | 'system'\n | 'promise'\n | 'import'\n | 'script'\n | 'node-commonjs';\n/**\n * Container locations and request scopes from which modules should be resolved and loaded at runtime. When provided, property name is used as request scope, otherwise request scope is automatically inferred from container location.\n */\nexport type Remotes = (RemotesItem | RemotesObject)[] | RemotesObject;\n/**\n * Container location from which modules should be resolved and loaded at runtime.\n */\nexport type RemotesItem = string;\n/**\n * Container locations from which modules should be resolved and loaded at runtime.\n */\nexport type RemotesItems = RemotesItem[];\n/**\n * The name of the runtime chunk. If set a runtime chunk with this name is created or an existing entrypoint is used as runtime.\n */\nexport type EntryRuntime = false | string;\n/**\n * Modules that should be shared in the share scope. When provided, property names are used to match requested modules in this compilation.\n */\nexport type Shared = (SharedItem | SharedObject)[] | SharedObject;\n/**\n * A module that should be shared in the share scope.\n */\nexport type SharedItem = string;\n\nexport interface ModuleFederationPluginOptions {\n /**\n * Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.\n */\n exposes?: Exposes;\n /**\n * The filename of the container as relative path inside the `output.path` directory.\n */\n filename?: string;\n /**\n * Options for library.\n */\n library?: LibraryOptions;\n /**\n * The name of the container.\n */\n name?: string;\n /**\n * The external type of the remote containers.\n */\n remoteType?: ExternalsType;\n /**\n * Container locations and request scopes from which modules should be resolved and loaded at runtime. When provided, property name is used as request scope, otherwise request scope is automatically inferred from container location.\n */\n remotes?: Remotes;\n /**\n * The name of the runtime chunk. If set a runtime chunk with this name is created or an existing entrypoint is used as runtime.\n */\n runtime?: EntryRuntime;\n /**\n * Share scope name used for all shared modules (defaults to 'default').\n */\n shareScope?: string;\n /**\n * Modules that should be shared in the share scope. When provided, property names are used to match requested modules in this compilation.\n */\n shared?: Shared;\n}\n/**\n * Modules that should be exposed by this container. Property names are used as public paths.\n */\nexport interface ExposesObject {\n /**\n * Modules that should be exposed by this container.\n */\n [k: string]: ExposesConfig | ExposesItem | ExposesItems;\n}\n/**\n * Advanced configuration for modules that should be exposed by this container.\n */\nexport interface ExposesConfig {\n /**\n * Request to a module that should be exposed by this container.\n */\n import: ExposesItem | ExposesItems;\n /**\n * Custom chunk name for the exposed module.\n */\n name?: string;\n}\n/**\n * Options for library.\n */\nexport interface LibraryOptions {\n /**\n * Add a container for define/require functions in the AMD module.\n */\n amdContainer?: AmdContainer;\n /**\n * Add a comment in the UMD wrapper.\n */\n auxiliaryComment?: AuxiliaryComment;\n /**\n * Specify which export should be exposed as library.\n */\n export?: LibraryExport;\n /**\n * The name of the library (some types allow unnamed libraries too).\n */\n name?: LibraryName;\n /**\n * Type of library (types included by default are 'var', 'module', 'assign', 'assign-properties', 'this', 'window', 'self', 'global', 'commonjs', 'commonjs2', 'commonjs-module', 'commonjs-static', 'amd', 'amd-require', 'umd', 'umd2', 'jsonp', 'system', but others might be added by plugins).\n */\n type: LibraryType;\n /**\n * If `output.libraryTarget` is set to umd and `output.library` is set, setting this to true will name the AMD module.\n */\n umdNamedDefine?: UmdNamedDefine;\n}\n/**\n * Set explicit comments for `commonjs`, `commonjs2`, `amd`, and `root`.\n */\nexport interface LibraryCustomUmdCommentObject {\n /**\n * Set comment for `amd` section in UMD.\n */\n amd?: string;\n /**\n * Set comment for `commonjs` (exports) section in UMD.\n */\n commonjs?: string;\n /**\n * Set comment for `commonjs2` (module.exports) section in UMD.\n */\n commonjs2?: string;\n /**\n * Set comment for `root` (global variable) section in UMD.\n */\n root?: string;\n}\n/**\n * Description object for all UMD variants of the library name.\n */\nexport interface LibraryCustomUmdObject {\n /**\n * Name of the exposed AMD library in the UMD.\n */\n amd?: string;\n /**\n * Name of the exposed commonjs export in the UMD.\n */\n commonjs?: string;\n /**\n * Name of the property exposed globally by a UMD library.\n */\n root?: string[] | string;\n}\n/**\n * Container locations from which modules should be resolved and loaded at runtime. Property names are used as request scopes.\n */\nexport interface RemotesObject {\n /**\n * Container locations from which modules should be resolved and loaded at runtime.\n */\n [k: string]: RemotesConfig | RemotesItem | RemotesItems;\n}\n/**\n * Advanced configuration for container locations from which modules should be resolved and loaded at runtime.\n */\nexport interface RemotesConfig {\n /**\n * Container locations from which modules should be resolved and loaded at runtime.\n */\n external: RemotesItem | RemotesItems;\n /**\n * The name of the share scope shared with this remote.\n */\n shareScope?: string;\n}\n/**\n * Modules that should be shared in the share scope. Property names are used to match requested modules in this compilation. Relative requests are resolved, module requests are matched unresolved, absolute paths will match resolved requests. A trailing slash will match all requests with this prefix. In this case shareKey must also have a trailing slash.\n */\nexport interface SharedObject {\n /**\n * Modules that should be shared in the share scope.\n */\n [k: string]: SharedConfig | SharedItem;\n}\n/**\n * Advanced configuration for modules that should be shared in the share scope.\n */\nexport interface SharedConfig {\n /**\n * Include the provided and fallback module directly instead behind an async request. This allows to use this shared module in initial load too. All possible shared modules need to be eager too.\n */\n eager?: boolean;\n /**\n * Provided module that should be provided to share scope. Also acts as fallback module if no shared module is found in share scope or version isn't valid. Defaults to the property name.\n */\n import?: false | SharedItem;\n /**\n * Package name to determine required version from description file. This is only needed when package name can't be automatically determined from request.\n */\n packageName?: string;\n /**\n * Version requirement from module in share scope.\n */\n requiredVersion?: false | string;\n /**\n * Module is looked up under this key from the share scope.\n */\n shareKey?: string;\n /**\n * Share scope name.\n */\n shareScope?: string;\n /**\n * Allow only a single version of the shared module in share scope (disabled by default).\n */\n singleton?: boolean;\n /**\n * Do not accept shared module if version is not valid (defaults to yes, if local fallback module is available and shared module is not a singleton, otherwise no, has no effect if there is no required version specified).\n */\n strictVersion?: boolean;\n /**\n * Version of the provided module. Will replace lower matching versions, but not higher.\n */\n version?: false | string;\n}\n"],"names":[],"mappings":"AAAA;;;;CAIC,GAED;;CAEC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/ObjectDeserializerContext.d.ts"],"names":[],"mappings":""}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
Object.defineProperty(exports, "StaticExportsDependency", {
|
|
6
|
-
enumerable: true,
|
|
7
|
-
get: function() {
|
|
8
|
-
return StaticExportsDependency;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
let StaticExportsDependency = class StaticExportsDependency extends NullDependency {
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
//# sourceMappingURL=StaticExportsDependency.d.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/StaticExportsDependency.d.ts"],"sourcesContent":["export class StaticExportsDependency extends NullDependency {\n /**\n * @param {string[] | true} exports export names\n * @param {boolean} canMangle true, if mangling exports names is allowed\n */\n constructor(exports: string[] | true, canMangle: boolean);\n exports: true | string[];\n canMangle: boolean;\n}\ndeclare namespace StaticExportsDependency {\n export {\n ChunkGraph,\n ExportSpec,\n ExportsSpec,\n UpdateHashContext,\n ModuleGraph,\n ObjectDeserializerContext,\n ObjectSerializerContext,\n Hash,\n };\n}\nimport NullDependency = require('./NullDependency');\ntype ChunkGraph = import('../ChunkGraph');\ntype ExportSpec = import('./Dependency').ExportSpec;\ntype ExportsSpec = import('./Dependency').ExportsSpec;\ntype UpdateHashContext = import('./Dependency').UpdateHashContext;\ntype ModuleGraph = import('../ModuleGraph');\ntype Hash = import('../util/Hash');\n"],"names":["StaticExportsDependency","NullDependency"],"mappings":";;;;+BAAaA;;;eAAAA;;;AAAN,IAAA,AAAMA,0BAAN,MAAMA,gCAAgCC;AAQ7C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/Template.d.ts"],"sourcesContent":["export = Template;\n\ndeclare class Template {\n /**\n *\n * @param {Function} fn a runtime function (.runtime.js) \"template\"\n * @returns {string} the updated and normalized function string\n */\n // eslint-disable-next-line @typescript-eslint/ban-types\n static getFunctionContent(fn: Function): string;\n /**\n * @param {string} str the string converted to identifier\n * @returns {string} created identifier\n */\n static toIdentifier(str: string): string;\n /**\n *\n * @param {string} str string to be converted to commented in bundle code\n * @returns {string} returns a commented version of string\n */\n static toComment(str: string): string;\n /**\n *\n * @param {string} str string to be converted to \"normal comment\"\n * @returns {string} returns a commented version of string\n */\n static toNormalComment(str: string): string;\n /**\n * @param {string} str string path to be normalized\n * @returns {string} normalized bundle-safe path\n */\n static toPath(str: string): string;\n /**\n * @param {number} n number to convert to ident\n * @returns {string} returns single character ident\n */\n static numberToIdentifier(n: number): string;\n /**\n * @param {number} n number to convert to ident\n * @returns {string} returns single character ident\n */\n static numberToIdentifierContinuation(n: number): string;\n /**\n *\n * @param {string | string[]} s string to convert to identity\n * @returns {string} converted identity\n */\n static indent(s: string | string[]): string;\n /**\n *\n * @param {string|string[]} s string to create prefix for\n * @param {string} prefix prefix to compose\n * @returns {string} returns new prefix string\n */\n static prefix(s: string | string[], prefix: string): string;\n /**\n *\n * @param {string|string[]} str string or string collection\n * @returns {string} returns a single string from array\n */\n static asString(str: string | string[]): string;\n /**\n * @typedef {Object} WithId\n * @property {string|number} id\n */\n /**\n * @param {WithId[]} modules a collection of modules to get array bounds for\n * @returns {[number, number] | false} returns the upper and lower array bounds\n * or false if not every module has a number based id\n */\n static getModulesArrayBounds(\n modules: {\n id: string | number;\n }[],\n ): [number, number] | false;\n /**\n * @param {ChunkRenderContext} renderContext render context\n * @param {Module[]} modules modules to render (should be ordered by identifier)\n * @param {function(Module): Source} renderModule function to render a module\n * @param {string=} prefix applying prefix strings\n * @returns {Source | null} rendered chunk modules in a Source object or null if no modules\n */\n static renderChunkModules(\n renderContext: ChunkRenderContext,\n modules: Module[],\n renderModule: (arg0: Module) => Source,\n prefix?: string | undefined,\n ): Source | null;\n /**\n * @param {RuntimeModule[]} runtimeModules array of runtime modules in order\n * @param {RenderContext & { codeGenerationResults?: CodeGenerationResults }} renderContext render context\n * @returns {Source} rendered runtime modules in a Source object\n */\n static renderRuntimeModules(\n runtimeModules: RuntimeModule[],\n renderContext: RenderContext & {\n codeGenerationResults?: CodeGenerationResults;\n },\n ): Source;\n /**\n * @param {RuntimeModule[]} runtimeModules array of runtime modules in order\n * @param {RenderContext} renderContext render context\n * @returns {Source} rendered chunk runtime modules in a Source object\n */\n static renderChunkRuntimeModules(\n runtimeModules: RuntimeModule[],\n renderContext: RenderContext,\n ): Source;\n}\ndeclare namespace Template {\n export {\n NUMBER_OF_IDENTIFIER_START_CHARS,\n NUMBER_OF_IDENTIFIER_CONTINUATION_CHARS,\n Source,\n OutputOptions,\n Chunk,\n ChunkGraph,\n CodeGenerationResults,\n AssetInfo,\n PathData,\n DependencyTemplates,\n Module,\n ModuleGraph,\n ModuleTemplate,\n RuntimeModule,\n RuntimeTemplate,\n ChunkRenderContext,\n RenderContext,\n RenderManifestOptions,\n RenderManifestEntry,\n RenderManifestEntryTemplated,\n RenderManifestEntryStatic,\n HasId,\n ModuleFilterPredicate,\n };\n}\ntype ChunkRenderContext =\n import('./javascript/JavascriptModulesPlugin').ChunkRenderContext;\ntype Module = import('./Module');\ntype Source = import('webpack-sources').Source;\ntype RuntimeModule = import('./RuntimeModule');\ntype RenderContext =\n import('./javascript/JavascriptModulesPlugin').RenderContext;\ntype CodeGenerationResults = import('./CodeGenerationResults');\ndeclare const NUMBER_OF_IDENTIFIER_START_CHARS: number;\ndeclare const NUMBER_OF_IDENTIFIER_CONTINUATION_CHARS: number;\ntype OutputOptions = import('../declarations/WebpackOptions').Output;\ntype Chunk = import('./Chunk');\ntype ChunkGraph = import('./ChunkGraph');\ntype AssetInfo = import('./Compilation').AssetInfo;\ntype PathData = import('./Compilation').PathData;\ntype DependencyTemplates = import('./DependencyTemplates');\ntype ModuleGraph = import('./ModuleGraph');\ntype ModuleTemplate = import('./ModuleTemplate');\ntype RuntimeTemplate = import('./RuntimeTemplate');\ntype RenderManifestOptions = {\n /**\n * the chunk used to render\n */\n chunk: Chunk;\n hash: string;\n fullHash: string;\n outputOptions: OutputOptions;\n codeGenerationResults: CodeGenerationResults;\n moduleTemplates: {\n javascript: ModuleTemplate;\n };\n dependencyTemplates: DependencyTemplates;\n runtimeTemplate: RuntimeTemplate;\n moduleGraph: ModuleGraph;\n chunkGraph: ChunkGraph;\n};\ntype RenderManifestEntry =\n | RenderManifestEntryTemplated\n | RenderManifestEntryStatic;\ntype RenderManifestEntryTemplated = {\n render: () => Source;\n filenameTemplate:\n | string\n | ((arg0: PathData, arg1: AssetInfo | undefined) => string);\n pathOptions?: PathData | undefined;\n info?: AssetInfo | undefined;\n identifier: string;\n hash?: string | undefined;\n auxiliary?: boolean | undefined;\n};\ntype RenderManifestEntryStatic = {\n render: () => Source;\n filename: string;\n info: AssetInfo;\n identifier: string;\n hash?: string | undefined;\n auxiliary?: boolean | undefined;\n};\ntype HasId = {\n id: number | string;\n};\ntype ModuleFilterPredicate = (arg0: Module, arg1: number) => boolean;\n"],"names":["Template"],"mappings":";iBAASA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/WebpackError.d.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/container/WebpackOptions.d.ts"],"names":[],"mappings":""}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file was automatically generated.
|
|
3
|
-
* DO NOT MODIFY BY HAND.
|
|
4
|
-
* Run `yarn special-lint-fix` to update
|
|
5
|
-
*/ /**
|
|
6
|
-
* Modules that should be consumed from share scope. When provided, property names are used to match requested modules in this compilation.
|
|
7
|
-
*/ "use strict";
|
|
8
|
-
Object.defineProperty(exports, "__esModule", {
|
|
9
|
-
value: true
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
//# sourceMappingURL=ConsumeSharedPlugin.d.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/sharing/ConsumeSharedPlugin.d.ts"],"sourcesContent":["/*\n * This file was automatically generated.\n * DO NOT MODIFY BY HAND.\n * Run `yarn special-lint-fix` to update\n */\n\n/**\n * Modules that should be consumed from share scope. When provided, property names are used to match requested modules in this compilation.\n */\nexport type Consumes = (ConsumesItem | ConsumesObject)[] | ConsumesObject;\n/**\n * A module that should be consumed from share scope.\n */\nexport type ConsumesItem = string;\n\n/**\n * Options for consuming shared modules.\n */\nexport interface ConsumeSharedPluginOptions {\n /**\n * Modules that should be consumed from share scope. When provided, property names are used to match requested modules in this compilation.\n */\n consumes: Consumes;\n /**\n * Share scope name used for all consumed modules (defaults to 'default').\n */\n shareScope?: string;\n}\n/**\n * Modules that should be consumed from share scope. Property names are used to match requested modules in this compilation. Relative requests are resolved, module requests are matched unresolved, absolute paths will match resolved requests. A trailing slash will match all requests with this prefix. In this case shareKey must also have a trailing slash.\n */\nexport interface ConsumesObject {\n /**\n * Modules that should be consumed from share scope.\n */\n [k: string]: ConsumesConfig | ConsumesItem;\n}\n/**\n * Advanced configuration for modules that should be consumed from share scope.\n */\nexport interface ConsumesConfig {\n /**\n * Include the fallback module directly instead behind an async request. This allows to use fallback module in initial load too. All possible shared modules need to be eager too.\n */\n eager?: boolean;\n /**\n * Fallback module if no shared module is found in share scope. Defaults to the property name.\n */\n import?: false | ConsumesItem;\n /**\n * Package name to determine required version from description file. This is only needed when package name can't be automatically determined from request.\n */\n packageName?: string;\n /**\n * Version requirement from module in share scope.\n */\n requiredVersion?: false | string;\n /**\n * Module is looked up under this key from the share scope.\n */\n shareKey?: string;\n /**\n * Share scope name.\n */\n shareScope?: string;\n /**\n * Allow only a single version of the shared module in share scope (disabled by default).\n */\n singleton?: boolean;\n /**\n * Do not accept shared module if version is not valid (defaults to yes, if local fallback module is available and shared module is not a singleton, otherwise no, has no effect if there is no required version specified).\n */\n strictVersion?: boolean;\n}\n"],"names":[],"mappings":"AAAA;;;;CAIC,GAED;;CAEC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file was automatically generated.
|
|
3
|
-
* DO NOT MODIFY BY HAND.
|
|
4
|
-
* Run `yarn special-lint-fix` to update
|
|
5
|
-
*/ /**
|
|
6
|
-
* Modules that should be provided as shared modules to the share scope. When provided, property name is used to match modules, otherwise this is automatically inferred from share key.
|
|
7
|
-
*/ "use strict";
|
|
8
|
-
Object.defineProperty(exports, "__esModule", {
|
|
9
|
-
value: true
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
//# sourceMappingURL=ProvideSharedPlugin.d.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/sharing/ProvideSharedPlugin.d.ts"],"sourcesContent":["/*\n * This file was automatically generated.\n * DO NOT MODIFY BY HAND.\n * Run `yarn special-lint-fix` to update\n */\n\n/**\n * Modules that should be provided as shared modules to the share scope. When provided, property name is used to match modules, otherwise this is automatically inferred from share key.\n */\nexport type Provides = (ProvidesItem | ProvidesObject)[] | ProvidesObject;\n/**\n * Request to a module that should be provided as shared module to the share scope (will be resolved when relative).\n */\nexport type ProvidesItem = string;\n\nexport interface ProvideSharedPluginOptions {\n /**\n * Modules that should be provided as shared modules to the share scope. When provided, property name is used to match modules, otherwise this is automatically inferred from share key.\n */\n provides: Provides;\n /**\n * Share scope name used for all provided modules (defaults to 'default').\n */\n shareScope?: string;\n}\n/**\n * Modules that should be provided as shared modules to the share scope. Property names are used as share keys.\n */\nexport interface ProvidesObject {\n /**\n * Modules that should be provided as shared modules to the share scope.\n */\n [k: string]: ProvidesConfig | ProvidesItem;\n}\n/**\n * Advanced configuration for modules that should be provided as shared modules to the share scope.\n */\nexport interface ProvidesConfig {\n /**\n * Include the provided module directly instead behind an async request. This allows to use this shared module in initial load too. All possible shared modules need to be eager too.\n */\n eager?: boolean;\n /**\n * Key in the share scope under which the shared modules should be stored.\n */\n shareKey?: string;\n /**\n * Share scope name.\n */\n shareScope?: string;\n /**\n * Version of the provided module. Will replace lower matching versions, but not higher.\n */\n version?: false | string;\n}\n"],"names":[],"mappings":"AAAA;;;;CAIC,GAED;;CAEC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file was automatically generated.
|
|
3
|
-
* DO NOT MODIFY BY HAND.
|
|
4
|
-
* Run `yarn special-lint-fix` to update
|
|
5
|
-
*/ /**
|
|
6
|
-
* Modules that should be shared in the share scope. When provided, property names are used to match requested modules in this compilation.
|
|
7
|
-
*/ "use strict";
|
|
8
|
-
Object.defineProperty(exports, "__esModule", {
|
|
9
|
-
value: true
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
//# sourceMappingURL=SharePlugin.d.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../packages/enhanced/src/declarations/plugins/sharing/SharePlugin.d.ts"],"sourcesContent":["/*\n * This file was automatically generated.\n * DO NOT MODIFY BY HAND.\n * Run `yarn special-lint-fix` to update\n */\n\n/**\n * Modules that should be shared in the share scope. When provided, property names are used to match requested modules in this compilation.\n */\nexport type Shared = (SharedItem | SharedObject)[] | SharedObject;\n/**\n * A module that should be shared in the share scope.\n */\nexport type SharedItem = string;\n\n/**\n * Options for shared modules.\n */\nexport interface SharePluginOptions {\n /**\n * Share scope name used for all shared modules (defaults to 'default').\n */\n shareScope?: string;\n /**\n * Modules that should be shared in the share scope. When provided, property names are used to match requested modules in this compilation.\n */\n shared: Shared;\n}\n/**\n * Modules that should be shared in the share scope. Property names are used to match requested modules in this compilation. Relative requests are resolved, module requests are matched unresolved, absolute paths will match resolved requests. A trailing slash will match all requests with this prefix. In this case shareKey must also have a trailing slash.\n */\nexport interface SharedObject {\n /**\n * Modules that should be shared in the share scope.\n */\n [k: string]: SharedConfig | SharedItem;\n}\n/**\n * Advanced configuration for modules that should be shared in the share scope.\n */\nexport interface SharedConfig {\n /**\n * Include the provided and fallback module directly instead behind an async request. This allows to use this shared module in initial load too. All possible shared modules need to be eager too.\n */\n eager?: boolean;\n /**\n * Provided module that should be provided to share scope. Also acts as fallback module if no shared module is found in share scope or version isn't valid. Defaults to the property name.\n */\n import?: false | SharedItem;\n /**\n * Package name to determine required version from description file. This is only needed when package name can't be automatically determined from request.\n */\n packageName?: string;\n /**\n * Version requirement from module in share scope.\n */\n requiredVersion?: false | string;\n /**\n * Module is looked up under this key from the share scope.\n */\n shareKey?: string;\n /**\n * Share scope name.\n */\n shareScope?: string;\n /**\n * Allow only a single version of the shared module in share scope (disabled by default).\n */\n singleton?: boolean;\n /**\n * Do not accept shared module if version is not valid (defaults to yes, if local fallback module is available and shared module is not a singleton, otherwise no, has no effect if there is no required version specified).\n */\n strictVersion?: boolean;\n /**\n * Version of the provided module. Will replace lower matching versions, but not higher.\n */\n version?: false | string;\n}\n"],"names":[],"mappings":"AAAA;;;;CAIC,GAED;;CAEC"}
|
package/src/index.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export { ModuleInfoRuntimeModule } from './runtime/ModuleInfoRuntimeModule';
|
|
2
|
-
export { ModuleInfoRuntimePlugin } from './runtime/ModuleInfoRuntimePlugin';
|
|
3
|
-
export { default as ModuleFederationPlugin } from './lib/container/ModuleFederationPlugin';
|
|
4
|
-
export { default as ContainerReferencePlugin } from './lib/container/ContainerReferencePlugin';
|
|
5
|
-
export { default as ContainerPlugin } from './lib/container/ContainerPlugin';
|
|
6
|
-
export { default as ContainerEntryModule } from './lib/container/ContainerEntryModule';
|
|
7
|
-
export { default as AsyncBoundaryPlugin } from './lib/container/AsyncBoundaryPlugin';
|
package/src/index.js
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
function _export(target, all) {
|
|
6
|
-
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: all[name]
|
|
9
|
-
});
|
|
10
|
-
}
|
|
11
|
-
_export(exports, {
|
|
12
|
-
AsyncBoundaryPlugin: function() {
|
|
13
|
-
return _AsyncBoundaryPlugin.default;
|
|
14
|
-
},
|
|
15
|
-
ContainerEntryModule: function() {
|
|
16
|
-
return _ContainerEntryModule.default;
|
|
17
|
-
},
|
|
18
|
-
ContainerPlugin: function() {
|
|
19
|
-
return _ContainerPlugin.default;
|
|
20
|
-
},
|
|
21
|
-
ContainerReferencePlugin: function() {
|
|
22
|
-
return _ContainerReferencePlugin.default;
|
|
23
|
-
},
|
|
24
|
-
ModuleFederationPlugin: function() {
|
|
25
|
-
return _ModuleFederationPlugin.default;
|
|
26
|
-
},
|
|
27
|
-
ModuleInfoRuntimeModule: function() {
|
|
28
|
-
return _ModuleInfoRuntimeModule.ModuleInfoRuntimeModule;
|
|
29
|
-
},
|
|
30
|
-
ModuleInfoRuntimePlugin: function() {
|
|
31
|
-
return _ModuleInfoRuntimePlugin.ModuleInfoRuntimePlugin;
|
|
32
|
-
}
|
|
33
|
-
});
|
|
34
|
-
const _ModuleInfoRuntimeModule = require("./runtime/ModuleInfoRuntimeModule");
|
|
35
|
-
const _ModuleInfoRuntimePlugin = require("./runtime/ModuleInfoRuntimePlugin");
|
|
36
|
-
const _ModuleFederationPlugin = /*#__PURE__*/ _interop_require_default(require("./lib/container/ModuleFederationPlugin"));
|
|
37
|
-
const _ContainerReferencePlugin = /*#__PURE__*/ _interop_require_default(require("./lib/container/ContainerReferencePlugin"));
|
|
38
|
-
const _ContainerPlugin = /*#__PURE__*/ _interop_require_default(require("./lib/container/ContainerPlugin"));
|
|
39
|
-
const _ContainerEntryModule = /*#__PURE__*/ _interop_require_default(require("./lib/container/ContainerEntryModule"));
|
|
40
|
-
const _AsyncBoundaryPlugin = /*#__PURE__*/ _interop_require_default(require("./lib/container/AsyncBoundaryPlugin"));
|
|
41
|
-
function _interop_require_default(obj) {
|
|
42
|
-
return obj && obj.__esModule ? obj : {
|
|
43
|
-
default: obj
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../packages/enhanced/src/index.ts"],"sourcesContent":["export { ModuleInfoRuntimeModule } from './runtime/ModuleInfoRuntimeModule';\nexport { ModuleInfoRuntimePlugin } from './runtime/ModuleInfoRuntimePlugin';\nexport { default as ModuleFederationPlugin } from './lib/container/ModuleFederationPlugin';\nexport { default as ContainerReferencePlugin } from './lib/container/ContainerReferencePlugin';\nexport { default as ContainerPlugin } from './lib/container/ContainerPlugin';\nexport { default as ContainerEntryModule } from './lib/container/ContainerEntryModule';\nexport { default as AsyncBoundaryPlugin } from './lib/container/AsyncBoundaryPlugin';\n"],"names":["AsyncBoundaryPlugin","ContainerEntryModule","ContainerPlugin","ContainerReferencePlugin","ModuleFederationPlugin","ModuleInfoRuntimeModule","ModuleInfoRuntimePlugin"],"mappings":";;;;;;;;;;;IAMoBA,mBAAmB;eAAnBA,4BAAmB;;IADnBC,oBAAoB;eAApBA,6BAAoB;;IADpBC,eAAe;eAAfA,wBAAe;;IADfC,wBAAwB;eAAxBA,iCAAwB;;IADxBC,sBAAsB;eAAtBA,+BAAsB;;IAFjCC,uBAAuB;eAAvBA,gDAAuB;;IACvBC,uBAAuB;eAAvBA,gDAAuB;;;yCADQ;yCACA;+EACU;iFACE;wEACT;6EACK;4EACD"}
|
package/src/lib/Constants.js
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
3
|
-
Author Sean Larkin @TheLarkInn
|
|
4
|
-
*/ /**
|
|
5
|
-
* @type {Readonly<"javascript/auto">}
|
|
6
|
-
*/ "use strict";
|
|
7
|
-
Object.defineProperty(exports, "__esModule", {
|
|
8
|
-
value: true
|
|
9
|
-
});
|
|
10
|
-
function _export(target, all) {
|
|
11
|
-
for(var name in all)Object.defineProperty(target, name, {
|
|
12
|
-
enumerable: true,
|
|
13
|
-
get: all[name]
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
_export(exports, {
|
|
17
|
-
ASSET_MODULE_TYPE: function() {
|
|
18
|
-
return ASSET_MODULE_TYPE;
|
|
19
|
-
},
|
|
20
|
-
ASSET_MODULE_TYPE_INLINE: function() {
|
|
21
|
-
return ASSET_MODULE_TYPE_INLINE;
|
|
22
|
-
},
|
|
23
|
-
ASSET_MODULE_TYPE_RAW_DATA_URL: function() {
|
|
24
|
-
return ASSET_MODULE_TYPE_RAW_DATA_URL;
|
|
25
|
-
},
|
|
26
|
-
ASSET_MODULE_TYPE_RESOURCE: function() {
|
|
27
|
-
return ASSET_MODULE_TYPE_RESOURCE;
|
|
28
|
-
},
|
|
29
|
-
ASSET_MODULE_TYPE_SOURCE: function() {
|
|
30
|
-
return ASSET_MODULE_TYPE_SOURCE;
|
|
31
|
-
},
|
|
32
|
-
CSS_MODULE_TYPE: function() {
|
|
33
|
-
return CSS_MODULE_TYPE;
|
|
34
|
-
},
|
|
35
|
-
CSS_MODULE_TYPE_AUTO: function() {
|
|
36
|
-
return CSS_MODULE_TYPE_AUTO;
|
|
37
|
-
},
|
|
38
|
-
CSS_MODULE_TYPE_GLOBAL: function() {
|
|
39
|
-
return CSS_MODULE_TYPE_GLOBAL;
|
|
40
|
-
},
|
|
41
|
-
CSS_MODULE_TYPE_MODULE: function() {
|
|
42
|
-
return CSS_MODULE_TYPE_MODULE;
|
|
43
|
-
},
|
|
44
|
-
JAVASCRIPT_MODULE_TYPE_AUTO: function() {
|
|
45
|
-
return JAVASCRIPT_MODULE_TYPE_AUTO;
|
|
46
|
-
},
|
|
47
|
-
JAVASCRIPT_MODULE_TYPE_DYNAMIC: function() {
|
|
48
|
-
return JAVASCRIPT_MODULE_TYPE_DYNAMIC;
|
|
49
|
-
},
|
|
50
|
-
JAVASCRIPT_MODULE_TYPE_ESM: function() {
|
|
51
|
-
return JAVASCRIPT_MODULE_TYPE_ESM;
|
|
52
|
-
},
|
|
53
|
-
JSON_MODULE_TYPE: function() {
|
|
54
|
-
return JSON_MODULE_TYPE;
|
|
55
|
-
},
|
|
56
|
-
WEBASSEMBLY_MODULE_TYPE_ASYNC: function() {
|
|
57
|
-
return WEBASSEMBLY_MODULE_TYPE_ASYNC;
|
|
58
|
-
},
|
|
59
|
-
WEBASSEMBLY_MODULE_TYPE_SYNC: function() {
|
|
60
|
-
return WEBASSEMBLY_MODULE_TYPE_SYNC;
|
|
61
|
-
},
|
|
62
|
-
WEBPACK_MODULE_TYPE_CONSUME_SHARED_MODULE: function() {
|
|
63
|
-
return WEBPACK_MODULE_TYPE_CONSUME_SHARED_MODULE;
|
|
64
|
-
},
|
|
65
|
-
WEBPACK_MODULE_TYPE_FALLBACK: function() {
|
|
66
|
-
return WEBPACK_MODULE_TYPE_FALLBACK;
|
|
67
|
-
},
|
|
68
|
-
WEBPACK_MODULE_TYPE_LAZY_COMPILATION_PROXY: function() {
|
|
69
|
-
return WEBPACK_MODULE_TYPE_LAZY_COMPILATION_PROXY;
|
|
70
|
-
},
|
|
71
|
-
WEBPACK_MODULE_TYPE_PROVIDE: function() {
|
|
72
|
-
return WEBPACK_MODULE_TYPE_PROVIDE;
|
|
73
|
-
},
|
|
74
|
-
WEBPACK_MODULE_TYPE_REMOTE: function() {
|
|
75
|
-
return WEBPACK_MODULE_TYPE_REMOTE;
|
|
76
|
-
},
|
|
77
|
-
WEBPACK_MODULE_TYPE_RUNTIME: function() {
|
|
78
|
-
return WEBPACK_MODULE_TYPE_RUNTIME;
|
|
79
|
-
}
|
|
80
|
-
});
|
|
81
|
-
const JAVASCRIPT_MODULE_TYPE_AUTO = 'javascript/auto';
|
|
82
|
-
const JAVASCRIPT_MODULE_TYPE_DYNAMIC = 'javascript/dynamic';
|
|
83
|
-
const JAVASCRIPT_MODULE_TYPE_ESM = 'javascript/esm';
|
|
84
|
-
const JSON_MODULE_TYPE = 'json';
|
|
85
|
-
const WEBASSEMBLY_MODULE_TYPE_ASYNC = 'webassembly/async';
|
|
86
|
-
const WEBASSEMBLY_MODULE_TYPE_SYNC = 'webassembly/sync';
|
|
87
|
-
const CSS_MODULE_TYPE = 'css';
|
|
88
|
-
const CSS_MODULE_TYPE_GLOBAL = 'css/global';
|
|
89
|
-
const CSS_MODULE_TYPE_MODULE = 'css/module';
|
|
90
|
-
const CSS_MODULE_TYPE_AUTO = 'css/auto';
|
|
91
|
-
const ASSET_MODULE_TYPE = 'asset';
|
|
92
|
-
const ASSET_MODULE_TYPE_INLINE = 'asset/inline';
|
|
93
|
-
const ASSET_MODULE_TYPE_RESOURCE = 'asset/resource';
|
|
94
|
-
const ASSET_MODULE_TYPE_SOURCE = 'asset/source';
|
|
95
|
-
const ASSET_MODULE_TYPE_RAW_DATA_URL = 'asset/raw-data-url';
|
|
96
|
-
const WEBPACK_MODULE_TYPE_RUNTIME = 'runtime';
|
|
97
|
-
const WEBPACK_MODULE_TYPE_FALLBACK = 'fallback-module';
|
|
98
|
-
const WEBPACK_MODULE_TYPE_REMOTE = 'remote-module';
|
|
99
|
-
const WEBPACK_MODULE_TYPE_PROVIDE = 'provide-module';
|
|
100
|
-
const WEBPACK_MODULE_TYPE_CONSUME_SHARED_MODULE = 'consume-shared-module';
|
|
101
|
-
const WEBPACK_MODULE_TYPE_LAZY_COMPILATION_PROXY = 'lazy-compilation-proxy'; /** @typedef {"javascript/auto" | "javascript/dynamic" | "javascript/esm"} JavaScriptModuleTypes */ /** @typedef {"json"} JSONModuleType */ /** @typedef {"webassembly/async" | "webassembly/sync"} WebAssemblyModuleTypes */ /** @typedef {"css" | "css/global" | "css/module"} CSSModuleTypes */ /** @typedef {"asset" | "asset/inline" | "asset/resource" | "asset/source" | "asset/raw-data-url"} AssetModuleTypes */ /** @typedef {"runtime" | "fallback-module" | "remote-module" | "provide-module" | "consume-shared-module" | "lazy-compilation-proxy"} WebpackModuleTypes */ /** @typedef {string} UnknownModuleTypes */ /** @typedef {JavaScriptModuleTypes | JSONModuleType | WebAssemblyModuleTypes | CSSModuleTypes | AssetModuleTypes | WebpackModuleTypes | UnknownModuleTypes} ModuleTypes */
|
|
102
|
-
|
|
103
|
-
//# sourceMappingURL=Constants.js.map
|
package/src/lib/Constants.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../packages/enhanced/src/lib/Constants.ts"],"sourcesContent":["/*\n\tMIT License http://www.opensource.org/licenses/mit-license.php\n\tAuthor Sean Larkin @TheLarkInn\n*/\n\n/**\n * @type {Readonly<\"javascript/auto\">}\n */\nexport const JAVASCRIPT_MODULE_TYPE_AUTO: Readonly<'javascript/auto'> =\n 'javascript/auto';\n\n/**\n * @type {Readonly<\"javascript/dynamic\">}\n */\nexport const JAVASCRIPT_MODULE_TYPE_DYNAMIC: Readonly<'javascript/dynamic'> =\n 'javascript/dynamic';\n\n/**\n * @type {Readonly<\"javascript/esm\">}\n * This is the module type used for _strict_ ES Module syntax. This means that all legacy formats\n * that webpack supports (CommonJS, AMD, SystemJS) are not supported.\n */\nexport const JAVASCRIPT_MODULE_TYPE_ESM: Readonly<'javascript/esm'> =\n 'javascript/esm';\n\n/**\n * @type {Readonly<\"json\">}\n * This is the module type used for JSON files. JSON files are always parsed as ES Module.\n */\nexport const JSON_MODULE_TYPE: Readonly<'json'> = 'json';\n\n/**\n * @type {Readonly<\"webassembly/async\">}\n * This is the module type used for WebAssembly modules. In webpack 5 they are always treated as async modules.\n *\n */\nexport const WEBASSEMBLY_MODULE_TYPE_ASYNC: Readonly<'webassembly/async'> =\n 'webassembly/async';\n\n/**\n * @type {Readonly<\"webassembly/sync\">}\n * This is the module type used for WebAssembly modules. In webpack 4 they are always treated as sync modules.\n * There is a legacy option to support this usage in webpack 5 and up.\n */\nexport const WEBASSEMBLY_MODULE_TYPE_SYNC: Readonly<'webassembly/sync'> =\n 'webassembly/sync';\n\n/**\n * @type {Readonly<\"css\">}\n * This is the module type used for CSS files.\n */\nexport const CSS_MODULE_TYPE: Readonly<'css'> = 'css';\n\n/**\n * @type {Readonly<\"css/global\">}\n * This is the module type used for CSS modules files where you need to use `:local` in selector list to hash classes.\n */\nexport const CSS_MODULE_TYPE_GLOBAL: Readonly<'css/global'> = 'css/global';\n\n/**\n * @type {Readonly<\"css/module\">}\n * This is the module type used for CSS modules files, by default all classes are hashed.\n */\nexport const CSS_MODULE_TYPE_MODULE: Readonly<'css/module'> = 'css/module';\n\n/**\n * @type {Readonly<\"css/auto\">}\n * This is the module type used for CSS files, the module will be parsed as CSS modules if it's filename contains `.module.` or `.modules.`.\n */\nexport const CSS_MODULE_TYPE_AUTO: Readonly<'css/auto'> = 'css/auto';\n\n/**\n * @type {Readonly<\"asset\">}\n * This is the module type used for automatically choosing between `asset/inline`, `asset/resource` based on asset size limit (8096).\n */\nexport const ASSET_MODULE_TYPE: Readonly<'asset'> = 'asset';\n\n/**\n * @type {Readonly<\"asset/inline\">}\n * This is the module type used for assets that are inlined as a data URI. This is the equivalent of `url-loader`.\n */\nexport const ASSET_MODULE_TYPE_INLINE: Readonly<'asset/inline'> =\n 'asset/inline';\n\n/**\n * @type {Readonly<\"asset/resource\">}\n * This is the module type used for assets that are copied to the output directory. This is the equivalent of `file-loader`.\n */\nexport const ASSET_MODULE_TYPE_RESOURCE: Readonly<'asset/resource'> =\n 'asset/resource';\n\n/**\n * @type {Readonly<\"asset/source\">}\n * This is the module type used for assets that are imported as source code. This is the equivalent of `raw-loader`.\n */\nexport const ASSET_MODULE_TYPE_SOURCE: Readonly<'asset/source'> =\n 'asset/source';\n\n/**\n * @type {Readonly<\"asset/raw-data-url\">}\n * TODO: Document what this asset type is for. See css-loader tests for its usage.\n */\nexport const ASSET_MODULE_TYPE_RAW_DATA_URL: Readonly<'asset/raw-data-url'> =\n 'asset/raw-data-url';\n\n/**\n * @type {Readonly<\"runtime\">}\n * This is the module type used for the webpack runtime abstractions.\n */\nexport const WEBPACK_MODULE_TYPE_RUNTIME: Readonly<'runtime'> = 'runtime';\n\n/**\n * @type {Readonly<\"fallback-module\">}\n * This is the module type used for the ModuleFederation feature's FallbackModule class.\n * TODO: Document this better.\n */\nexport const WEBPACK_MODULE_TYPE_FALLBACK: Readonly<'fallback-module'> =\n 'fallback-module';\n\n/**\n * @type {Readonly<\"remote-module\">}\n * This is the module type used for the ModuleFederation feature's RemoteModule class.\n * TODO: Document this better.\n */\nexport const WEBPACK_MODULE_TYPE_REMOTE: Readonly<'remote-module'> =\n 'remote-module';\n\n/**\n * @type {Readonly<\"provide-module\">}\n * This is the module type used for the ModuleFederation feature's ProvideModule class.\n * TODO: Document this better.\n */\nexport const WEBPACK_MODULE_TYPE_PROVIDE: Readonly<'provide-module'> =\n 'provide-module';\n\n/**\n * @type {Readonly<\"consume-shared-module\">}\n * This is the module type used for the ModuleFederation feature's ConsumeSharedModule class.\n */\nexport const WEBPACK_MODULE_TYPE_CONSUME_SHARED_MODULE: Readonly<'consume-shared-module'> =\n 'consume-shared-module';\n\n/**\n * @type {Readonly<\"lazy-compilation-proxy\">}\n * Module type used for `experiments.lazyCompilation` feature. See `LazyCompilationPlugin` for more information.\n */\nexport const WEBPACK_MODULE_TYPE_LAZY_COMPILATION_PROXY: Readonly<'lazy-compilation-proxy'> =\n 'lazy-compilation-proxy';\n\n/** @typedef {\"javascript/auto\" | \"javascript/dynamic\" | \"javascript/esm\"} JavaScriptModuleTypes */\n/** @typedef {\"json\"} JSONModuleType */\n/** @typedef {\"webassembly/async\" | \"webassembly/sync\"} WebAssemblyModuleTypes */\n/** @typedef {\"css\" | \"css/global\" | \"css/module\"} CSSModuleTypes */\n/** @typedef {\"asset\" | \"asset/inline\" | \"asset/resource\" | \"asset/source\" | \"asset/raw-data-url\"} AssetModuleTypes */\n/** @typedef {\"runtime\" | \"fallback-module\" | \"remote-module\" | \"provide-module\" | \"consume-shared-module\" | \"lazy-compilation-proxy\"} WebpackModuleTypes */\n/** @typedef {string} UnknownModuleTypes */\n/** @typedef {JavaScriptModuleTypes | JSONModuleType | WebAssemblyModuleTypes | CSSModuleTypes | AssetModuleTypes | WebpackModuleTypes | UnknownModuleTypes} ModuleTypes */\n"],"names":["ASSET_MODULE_TYPE","ASSET_MODULE_TYPE_INLINE","ASSET_MODULE_TYPE_RAW_DATA_URL","ASSET_MODULE_TYPE_RESOURCE","ASSET_MODULE_TYPE_SOURCE","CSS_MODULE_TYPE","CSS_MODULE_TYPE_AUTO","CSS_MODULE_TYPE_GLOBAL","CSS_MODULE_TYPE_MODULE","JAVASCRIPT_MODULE_TYPE_AUTO","JAVASCRIPT_MODULE_TYPE_DYNAMIC","JAVASCRIPT_MODULE_TYPE_ESM","JSON_MODULE_TYPE","WEBASSEMBLY_MODULE_TYPE_ASYNC","WEBASSEMBLY_MODULE_TYPE_SYNC","WEBPACK_MODULE_TYPE_CONSUME_SHARED_MODULE","WEBPACK_MODULE_TYPE_FALLBACK","WEBPACK_MODULE_TYPE_LAZY_COMPILATION_PROXY","WEBPACK_MODULE_TYPE_PROVIDE","WEBPACK_MODULE_TYPE_REMOTE","WEBPACK_MODULE_TYPE_RUNTIME"],"mappings":"AAAA;;;AAGA,GAEA;;CAEC;;;;;;;;;;;IAoEYA,iBAAiB;eAAjBA;;IAMAC,wBAAwB;eAAxBA;;IAqBAC,8BAA8B;eAA9BA;;IAdAC,0BAA0B;eAA1BA;;IAOAC,wBAAwB;eAAxBA;;IA5CAC,eAAe;eAAfA;;IAkBAC,oBAAoB;eAApBA;;IAZAC,sBAAsB;eAAtBA;;IAMAC,sBAAsB;eAAtBA;;IAvDAC,2BAA2B;eAA3BA;;IAMAC,8BAA8B;eAA9BA;;IAQAC,0BAA0B;eAA1BA;;IAOAC,gBAAgB;eAAhBA;;IAOAC,6BAA6B;eAA7BA;;IAQAC,4BAA4B;eAA5BA;;IA+FAC,yCAAyC;eAAzCA;;IAvBAC,4BAA4B;eAA5BA;;IA8BAC,0CAA0C;eAA1CA;;IAdAC,2BAA2B;eAA3BA;;IARAC,0BAA0B;eAA1BA;;IAfAC,2BAA2B;eAA3BA;;;AArGN,MAAMX,8BACX;AAKK,MAAMC,iCACX;AAOK,MAAMC,6BACX;AAMK,MAAMC,mBAAqC;AAO3C,MAAMC,gCACX;AAOK,MAAMC,+BACX;AAMK,MAAMT,kBAAmC;AAMzC,MAAME,yBAAiD;AAMvD,MAAMC,yBAAiD;AAMvD,MAAMF,uBAA6C;AAMnD,MAAMN,oBAAuC;AAM7C,MAAMC,2BACX;AAMK,MAAME,6BACX;AAMK,MAAMC,2BACX;AAMK,MAAMF,iCACX;AAMK,MAAMkB,8BAAmD;AAOzD,MAAMJ,+BACX;AAOK,MAAMG,6BACX;AAOK,MAAMD,8BACX;AAMK,MAAMH,4CACX;AAMK,MAAME,6CACX,0BAEF,iGAAiG,IACjG,qCAAqC,IACrC,+EAA+E,IAC/E,kEAAkE,IAClE,oHAAoH,IACpH,0JAA0J,IAC1J,yCAAyC,IACzC,yKAAyK"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../packages/enhanced/src/lib/RuntimeGlobals.ts"],"sourcesContent":["/*\n\tMIT License http://www.opensource.org/licenses/mit-license.php\n\tAuthor Tobias Koppers @sokra\n*/\n\n'use strict';\n\n/**\n * the internal require function\n */\nexports.require = '__webpack_require__';\n\n/**\n * access to properties of the internal require function/object\n */\nexports.requireScope = '__webpack_require__.*';\n\n/**\n * the internal exports object\n */\nexports.exports = '__webpack_exports__';\n\n/**\n * top-level this need to be the exports object\n */\nexports.thisAsExports = 'top-level-this-exports';\n\n/**\n * runtime need to return the exports of the last entry module\n */\nexports.returnExportsFromRuntime = 'return-exports-from-runtime';\n\n/**\n * the internal module object\n */\nexports.module = 'module';\n\n/**\n * the internal module object\n */\nexports.moduleId = 'module.id';\n\n/**\n * the internal module object\n */\nexports.moduleLoaded = 'module.loaded';\n\n/**\n * the bundle public path\n */\nexports.publicPath = '__webpack_require__.p';\n\n/**\n * the module id of the entry point\n */\nexports.entryModuleId = '__webpack_require__.s';\n\n/**\n * the module cache\n */\nexports.moduleCache = '__webpack_require__.c';\n\n/**\n * the module functions\n */\nexports.moduleFactories = '__webpack_require__.m';\n\n/**\n * the module functions, with only write access\n */\nexports.moduleFactoriesAddOnly = '__webpack_require__.m (add only)';\n\n/**\n * the chunk ensure function\n */\nexports.ensureChunk = '__webpack_require__.e';\n\n/**\n * an object with handlers to ensure a chunk\n */\nexports.ensureChunkHandlers = '__webpack_require__.f';\n\n/**\n * a runtime requirement if ensureChunkHandlers should include loading of chunk needed for entries\n */\nexports.ensureChunkIncludeEntries = '__webpack_require__.f (include entries)';\n\n/**\n * the chunk prefetch function\n */\nexports.prefetchChunk = '__webpack_require__.E';\n\n/**\n * an object with handlers to prefetch a chunk\n */\nexports.prefetchChunkHandlers = '__webpack_require__.F';\n\n/**\n * the chunk preload function\n */\nexports.preloadChunk = '__webpack_require__.G';\n\n/**\n * an object with handlers to preload a chunk\n */\nexports.preloadChunkHandlers = '__webpack_require__.H';\n\n/**\n * the exported property define getters function\n */\nexports.definePropertyGetters = '__webpack_require__.d';\n\n/**\n * define compatibility on export\n */\nexports.makeNamespaceObject = '__webpack_require__.r';\n\n/**\n * create a fake namespace object\n */\nexports.createFakeNamespaceObject = '__webpack_require__.t';\n\n/**\n * compatibility get default export\n */\nexports.compatGetDefaultExport = '__webpack_require__.n';\n\n/**\n * harmony module decorator\n */\nexports.harmonyModuleDecorator = '__webpack_require__.hmd';\n\n/**\n * node.js module decorator\n */\nexports.nodeModuleDecorator = '__webpack_require__.nmd';\n\n/**\n * the webpack hash\n */\nexports.getFullHash = '__webpack_require__.h';\n\n/**\n * an object containing all installed WebAssembly.Instance export objects keyed by module id\n */\nexports.wasmInstances = '__webpack_require__.w';\n\n/**\n * instantiate a wasm instance from module exports object, id, hash and importsObject\n */\nexports.instantiateWasm = '__webpack_require__.v';\n\n/**\n * the uncaught error handler for the webpack runtime\n */\nexports.uncaughtErrorHandler = '__webpack_require__.oe';\n\n/**\n * the script nonce\n */\nexports.scriptNonce = '__webpack_require__.nc';\n\n/**\n * function to load a script tag.\n * Arguments: (url: string, done: (event) => void), key?: string | number, chunkId?: string | number) => void\n * done function is called when loading has finished or timeout occurred.\n * It will attach to existing script tags with data-webpack == uniqueName + \":\" + key or src == url.\n */\nexports.loadScript = '__webpack_require__.l';\n\n/**\n * function to promote a string to a TrustedScript using webpack's Trusted\n * Types policy\n * Arguments: (script: string) => TrustedScript\n */\nexports.createScript = '__webpack_require__.ts';\n\n/**\n * function to promote a string to a TrustedScriptURL using webpack's Trusted\n * Types policy\n * Arguments: (url: string) => TrustedScriptURL\n */\nexports.createScriptUrl = '__webpack_require__.tu';\n\n/**\n * function to return webpack's Trusted Types policy\n * Arguments: () => TrustedTypePolicy\n */\nexports.getTrustedTypesPolicy = '__webpack_require__.tt';\n\n/**\n * a flag when a chunk has a fetch priority\n */\nexports.hasFetchPriority = 'has fetch priority';\n\n/**\n * the chunk name of the chunk with the runtime\n */\nexports.chunkName = '__webpack_require__.cn';\n\n/**\n * the runtime id of the current runtime\n */\nexports.runtimeId = '__webpack_require__.j';\n\n/**\n * the filename of the script part of the chunk\n */\nexports.getChunkScriptFilename = '__webpack_require__.u';\n\n/**\n * the filename of the css part of the chunk\n */\nexports.getChunkCssFilename = '__webpack_require__.k';\n\n/**\n * a flag when a module/chunk/tree has css modules\n */\nexports.hasCssModules = 'has css modules';\n\n/**\n * the filename of the script part of the hot update chunk\n */\nexports.getChunkUpdateScriptFilename = '__webpack_require__.hu';\n\n/**\n * the filename of the css part of the hot update chunk\n */\nexports.getChunkUpdateCssFilename = '__webpack_require__.hk';\n\n/**\n * startup signal from runtime\n * This will be called when the runtime chunk has been loaded.\n */\nexports.startup = '__webpack_require__.x';\n\n/**\n * @deprecated\n * creating a default startup function with the entry modules\n */\nexports.startupNoDefault = '__webpack_require__.x (no default handler)';\n\n/**\n * startup signal from runtime but only used to add logic after the startup\n */\nexports.startupOnlyAfter = '__webpack_require__.x (only after)';\n\n/**\n * startup signal from runtime but only used to add sync logic before the startup\n */\nexports.startupOnlyBefore = '__webpack_require__.x (only before)';\n\n/**\n * global callback functions for installing chunks\n */\nexports.chunkCallback = 'webpackChunk';\n\n/**\n * method to startup an entrypoint with needed chunks.\n * Signature: (moduleId: Id, chunkIds: Id[]) => any.\n * Returns the exports of the module or a Promise\n */\nexports.startupEntrypoint = '__webpack_require__.X';\n\n/**\n * register deferred code, which will run when certain\n * chunks are loaded.\n * Signature: (chunkIds: Id[], fn: () => any, priority: int >= 0 = 0) => any\n * Returned value will be returned directly when all chunks are already loaded\n * When (priority & 1) it will wait for all other handlers with lower priority to\n * be executed before itself is executed\n */\nexports.onChunksLoaded = '__webpack_require__.O';\n\n/**\n * method to install a chunk that was loaded somehow\n * Signature: ({ id, ids, modules, runtime }) => void\n */\nexports.externalInstallChunk = '__webpack_require__.C';\n\n/**\n * interceptor for module executions\n */\nexports.interceptModuleExecution = '__webpack_require__.i';\n\n/**\n * the global object\n */\nexports.global = '__webpack_require__.g';\n\n/**\n * an object with all share scopes\n */\nexports.shareScopeMap = '__webpack_require__.S';\n\n/**\n * The sharing init sequence function (only runs once per share scope).\n * Has one argument, the name of the share scope.\n * Creates a share scope if not existing\n */\nexports.initializeSharing = '__webpack_require__.I';\n\n/**\n * The current scope when getting a module from a remote\n */\nexports.currentRemoteGetScope = '__webpack_require__.R';\n\n/**\n * the filename of the HMR manifest\n */\nexports.getUpdateManifestFilename = '__webpack_require__.hmrF';\n\n/**\n * function downloading the update manifest\n */\nexports.hmrDownloadManifest = '__webpack_require__.hmrM';\n\n/**\n * array with handler functions to download chunk updates\n */\nexports.hmrDownloadUpdateHandlers = '__webpack_require__.hmrC';\n\n/**\n * object with all hmr module data for all modules\n */\nexports.hmrModuleData = '__webpack_require__.hmrD';\n\n/**\n * array with handler functions when a module should be invalidated\n */\nexports.hmrInvalidateModuleHandlers = '__webpack_require__.hmrI';\n\n/**\n * the prefix for storing state of runtime modules when hmr is enabled\n */\nexports.hmrRuntimeStatePrefix = '__webpack_require__.hmrS';\n\n/**\n * the AMD define function\n */\nexports.amdDefine = '__webpack_require__.amdD';\n\n/**\n * the AMD options\n */\nexports.amdOptions = '__webpack_require__.amdO';\n\n/**\n * the System polyfill object\n */\nexports.system = '__webpack_require__.System';\n\n/**\n * the shorthand for Object.prototype.hasOwnProperty\n * using of it decreases the compiled bundle size\n */\nexports.hasOwnProperty = '__webpack_require__.o';\n\n/**\n * the System.register context object\n */\nexports.systemContext = '__webpack_require__.y';\n\n/**\n * the baseURI of current document\n */\nexports.baseURI = '__webpack_require__.b';\n\n/**\n * a RelativeURL class when relative URLs are used\n */\nexports.relativeUrl = '__webpack_require__.U';\n\n/**\n * Creates an async module. The body function must be a async function.\n * \"module.exports\" will be decorated with an AsyncModulePromise.\n * The body function will be called.\n * To handle async dependencies correctly do this: \"([a, b, c] = await handleDependencies([a, b, c]));\".\n * If \"hasAwaitAfterDependencies\" is truthy, \"handleDependencies()\" must be called at the end of the body function.\n * Signature: function(\n * module: Module,\n * body: (handleDependencies: (deps: AsyncModulePromise[]) => Promise<any[]> & () => void,\n * hasAwaitAfterDependencies?: boolean\n * ) => void\n */\nexports.asyncModule = '__webpack_require__.a';\n"],"names":["exports","require","requireScope","thisAsExports","returnExportsFromRuntime","module","moduleId","moduleLoaded","publicPath","entryModuleId","moduleCache","moduleFactories","moduleFactoriesAddOnly","ensureChunk","ensureChunkHandlers","ensureChunkIncludeEntries","prefetchChunk","prefetchChunkHandlers","preloadChunk","preloadChunkHandlers","definePropertyGetters","makeNamespaceObject","createFakeNamespaceObject","compatGetDefaultExport","harmonyModuleDecorator","nodeModuleDecorator","getFullHash","wasmInstances","instantiateWasm","uncaughtErrorHandler","scriptNonce","loadScript","createScript","createScriptUrl","getTrustedTypesPolicy","hasFetchPriority","chunkName","runtimeId","getChunkScriptFilename","getChunkCssFilename","hasCssModules","getChunkUpdateScriptFilename","getChunkUpdateCssFilename","startup","startupNoDefault","startupOnlyAfter","startupOnlyBefore","chunkCallback","startupEntrypoint","onChunksLoaded","externalInstallChunk","interceptModuleExecution","global","shareScopeMap","initializeSharing","currentRemoteGetScope","getUpdateManifestFilename","hmrDownloadManifest","hmrDownloadUpdateHandlers","hmrModuleData","hmrInvalidateModuleHandlers","hmrRuntimeStatePrefix","amdDefine","amdOptions","system","hasOwnProperty","systemContext","baseURI","relativeUrl","asyncModule"],"mappings":"AAAA;;;AAGA,GAEA;AAEA;;CAEC,GACDA,QAAQC,OAAO,GAAG;AAElB;;CAEC,GACDD,QAAQE,YAAY,GAAG;AAEvB;;CAEC,GACDF,QAAQA,OAAO,GAAG;AAElB;;CAEC,GACDA,QAAQG,aAAa,GAAG;AAExB;;CAEC,GACDH,QAAQI,wBAAwB,GAAG;AAEnC;;CAEC,GACDJ,QAAQK,MAAM,GAAG;AAEjB;;CAEC,GACDL,QAAQM,QAAQ,GAAG;AAEnB;;CAEC,GACDN,QAAQO,YAAY,GAAG;AAEvB;;CAEC,GACDP,QAAQQ,UAAU,GAAG;AAErB;;CAEC,GACDR,QAAQS,aAAa,GAAG;AAExB;;CAEC,GACDT,QAAQU,WAAW,GAAG;AAEtB;;CAEC,GACDV,QAAQW,eAAe,GAAG;AAE1B;;CAEC,GACDX,QAAQY,sBAAsB,GAAG;AAEjC;;CAEC,GACDZ,QAAQa,WAAW,GAAG;AAEtB;;CAEC,GACDb,QAAQc,mBAAmB,GAAG;AAE9B;;CAEC,GACDd,QAAQe,yBAAyB,GAAG;AAEpC;;CAEC,GACDf,QAAQgB,aAAa,GAAG;AAExB;;CAEC,GACDhB,QAAQiB,qBAAqB,GAAG;AAEhC;;CAEC,GACDjB,QAAQkB,YAAY,GAAG;AAEvB;;CAEC,GACDlB,QAAQmB,oBAAoB,GAAG;AAE/B;;CAEC,GACDnB,QAAQoB,qBAAqB,GAAG;AAEhC;;CAEC,GACDpB,QAAQqB,mBAAmB,GAAG;AAE9B;;CAEC,GACDrB,QAAQsB,yBAAyB,GAAG;AAEpC;;CAEC,GACDtB,QAAQuB,sBAAsB,GAAG;AAEjC;;CAEC,GACDvB,QAAQwB,sBAAsB,GAAG;AAEjC;;CAEC,GACDxB,QAAQyB,mBAAmB,GAAG;AAE9B;;CAEC,GACDzB,QAAQ0B,WAAW,GAAG;AAEtB;;CAEC,GACD1B,QAAQ2B,aAAa,GAAG;AAExB;;CAEC,GACD3B,QAAQ4B,eAAe,GAAG;AAE1B;;CAEC,GACD5B,QAAQ6B,oBAAoB,GAAG;AAE/B;;CAEC,GACD7B,QAAQ8B,WAAW,GAAG;AAEtB;;;;;CAKC,GACD9B,QAAQ+B,UAAU,GAAG;AAErB;;;;CAIC,GACD/B,QAAQgC,YAAY,GAAG;AAEvB;;;;CAIC,GACDhC,QAAQiC,eAAe,GAAG;AAE1B;;;CAGC,GACDjC,QAAQkC,qBAAqB,GAAG;AAEhC;;CAEC,GACDlC,QAAQmC,gBAAgB,GAAG;AAE3B;;CAEC,GACDnC,QAAQoC,SAAS,GAAG;AAEpB;;CAEC,GACDpC,QAAQqC,SAAS,GAAG;AAEpB;;CAEC,GACDrC,QAAQsC,sBAAsB,GAAG;AAEjC;;CAEC,GACDtC,QAAQuC,mBAAmB,GAAG;AAE9B;;CAEC,GACDvC,QAAQwC,aAAa,GAAG;AAExB;;CAEC,GACDxC,QAAQyC,4BAA4B,GAAG;AAEvC;;CAEC,GACDzC,QAAQ0C,yBAAyB,GAAG;AAEpC;;;CAGC,GACD1C,QAAQ2C,OAAO,GAAG;AAElB;;;CAGC,GACD3C,QAAQ4C,gBAAgB,GAAG;AAE3B;;CAEC,GACD5C,QAAQ6C,gBAAgB,GAAG;AAE3B;;CAEC,GACD7C,QAAQ8C,iBAAiB,GAAG;AAE5B;;CAEC,GACD9C,QAAQ+C,aAAa,GAAG;AAExB;;;;CAIC,GACD/C,QAAQgD,iBAAiB,GAAG;AAE5B;;;;;;;CAOC,GACDhD,QAAQiD,cAAc,GAAG;AAEzB;;;CAGC,GACDjD,QAAQkD,oBAAoB,GAAG;AAE/B;;CAEC,GACDlD,QAAQmD,wBAAwB,GAAG;AAEnC;;CAEC,GACDnD,QAAQoD,MAAM,GAAG;AAEjB;;CAEC,GACDpD,QAAQqD,aAAa,GAAG;AAExB;;;;CAIC,GACDrD,QAAQsD,iBAAiB,GAAG;AAE5B;;CAEC,GACDtD,QAAQuD,qBAAqB,GAAG;AAEhC;;CAEC,GACDvD,QAAQwD,yBAAyB,GAAG;AAEpC;;CAEC,GACDxD,QAAQyD,mBAAmB,GAAG;AAE9B;;CAEC,GACDzD,QAAQ0D,yBAAyB,GAAG;AAEpC;;CAEC,GACD1D,QAAQ2D,aAAa,GAAG;AAExB;;CAEC,GACD3D,QAAQ4D,2BAA2B,GAAG;AAEtC;;CAEC,GACD5D,QAAQ6D,qBAAqB,GAAG;AAEhC;;CAEC,GACD7D,QAAQ8D,SAAS,GAAG;AAEpB;;CAEC,GACD9D,QAAQ+D,UAAU,GAAG;AAErB;;CAEC,GACD/D,QAAQgE,MAAM,GAAG;AAEjB;;;CAGC,GACDhE,QAAQiE,cAAc,GAAG;AAEzB;;CAEC,GACDjE,QAAQkE,aAAa,GAAG;AAExB;;CAEC,GACDlE,QAAQmE,OAAO,GAAG;AAElB;;CAEC,GACDnE,QAAQoE,WAAW,GAAG;AAEtB;;;;;;;;;;;CAWC,GACDpE,QAAQqE,WAAW,GAAG"}
|