@module-federation/enhanced 2.1.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (285) hide show
  1. package/dist/CHANGELOG.md +2357 -0
  2. package/dist/README.md +213 -0
  3. package/dist/rstestmigrate.md +140 -0
  4. package/dist/src/_virtual/_rolldown/runtime.js +47 -0
  5. package/dist/src/index.d.ts +22 -19
  6. package/dist/src/index.js +47 -43
  7. package/dist/src/index.js.map +1 -1
  8. package/dist/src/lib/Constants.d.ts +25 -29
  9. package/dist/src/lib/Constants.js +136 -116
  10. package/dist/src/lib/Constants.js.map +1 -1
  11. package/dist/src/lib/container/AsyncBoundaryPlugin.d.ts +20 -16
  12. package/dist/src/lib/container/AsyncBoundaryPlugin.js +137 -200
  13. package/dist/src/lib/container/AsyncBoundaryPlugin.js.map +1 -1
  14. package/dist/src/lib/container/ContainerEntryDependency.d.ts +28 -23
  15. package/dist/src/lib/container/ContainerEntryDependency.js +39 -39
  16. package/dist/src/lib/container/ContainerEntryDependency.js.map +1 -1
  17. package/dist/src/lib/container/ContainerEntryModule.d.ts +93 -84
  18. package/dist/src/lib/container/ContainerEntryModule.js +219 -234
  19. package/dist/src/lib/container/ContainerEntryModule.js.map +1 -1
  20. package/dist/src/lib/container/ContainerEntryModuleFactory.d.ts +15 -10
  21. package/dist/src/lib/container/ContainerEntryModuleFactory.js +21 -25
  22. package/dist/src/lib/container/ContainerEntryModuleFactory.js.map +1 -1
  23. package/dist/src/lib/container/ContainerExposedDependency.d.ts +29 -24
  24. package/dist/src/lib/container/ContainerExposedDependency.js +47 -47
  25. package/dist/src/lib/container/ContainerExposedDependency.js.map +1 -1
  26. package/dist/src/lib/container/ContainerPlugin.d.ts +12 -8
  27. package/dist/src/lib/container/ContainerPlugin.js +147 -211
  28. package/dist/src/lib/container/ContainerPlugin.js.map +1 -1
  29. package/dist/src/lib/container/ContainerReferencePlugin.d.ts +16 -12
  30. package/dist/src/lib/container/ContainerReferencePlugin.js +74 -102
  31. package/dist/src/lib/container/ContainerReferencePlugin.js.map +1 -1
  32. package/dist/src/lib/container/FallbackDependency.d.ts +24 -19
  33. package/dist/src/lib/container/FallbackDependency.js +46 -44
  34. package/dist/src/lib/container/FallbackDependency.js.map +1 -1
  35. package/dist/src/lib/container/FallbackItemDependency.d.ts +13 -8
  36. package/dist/src/lib/container/FallbackItemDependency.js +24 -24
  37. package/dist/src/lib/container/FallbackItemDependency.js.map +1 -1
  38. package/dist/src/lib/container/FallbackModule.d.ts +82 -71
  39. package/dist/src/lib/container/FallbackModule.js +133 -145
  40. package/dist/src/lib/container/FallbackModule.js.map +1 -1
  41. package/dist/src/lib/container/FallbackModuleFactory.d.ts +15 -10
  42. package/dist/src/lib/container/FallbackModuleFactory.js +20 -24
  43. package/dist/src/lib/container/FallbackModuleFactory.js.map +1 -1
  44. package/dist/src/lib/container/HoistContainerReferencesPlugin.d.ts +11 -7
  45. package/dist/src/lib/container/HoistContainerReferencesPlugin.js +125 -188
  46. package/dist/src/lib/container/HoistContainerReferencesPlugin.js.map +1 -1
  47. package/dist/src/lib/container/ModuleFederationPlugin.d.ts +20 -16
  48. package/dist/src/lib/container/ModuleFederationPlugin.js +143 -181
  49. package/dist/src/lib/container/ModuleFederationPlugin.js.map +1 -1
  50. package/dist/src/lib/container/RemoteModule.d.ts +79 -74
  51. package/dist/src/lib/container/RemoteModule.js +143 -153
  52. package/dist/src/lib/container/RemoteModule.js.map +1 -1
  53. package/dist/src/lib/container/RemoteRuntimeModule.d.ts +12 -7
  54. package/dist/src/lib/container/RemoteRuntimeModule.js +86 -132
  55. package/dist/src/lib/container/RemoteRuntimeModule.js.map +1 -1
  56. package/dist/src/lib/container/RemoteToExternalDependency.d.ts +13 -8
  57. package/dist/src/lib/container/RemoteToExternalDependency.js +25 -23
  58. package/dist/src/lib/container/RemoteToExternalDependency.js.map +1 -1
  59. package/dist/src/lib/container/constant.d.ts +3 -0
  60. package/dist/src/lib/container/constant.js +11 -14
  61. package/dist/src/lib/container/constant.js.map +1 -1
  62. package/dist/src/lib/container/options.d.ts +7 -3
  63. package/dist/src/lib/container/options.js +51 -69
  64. package/dist/src/lib/container/options.js.map +1 -1
  65. package/dist/src/lib/container/runtime/EmbedFederationRuntimeModule.d.ts +14 -9
  66. package/dist/src/lib/container/runtime/EmbedFederationRuntimeModule.js +56 -64
  67. package/dist/src/lib/container/runtime/EmbedFederationRuntimeModule.js.map +1 -1
  68. package/dist/src/lib/container/runtime/EmbedFederationRuntimePlugin.d.ts +23 -19
  69. package/dist/src/lib/container/runtime/EmbedFederationRuntimePlugin.js +71 -101
  70. package/dist/src/lib/container/runtime/EmbedFederationRuntimePlugin.js.map +1 -1
  71. package/dist/src/lib/container/runtime/FederationModulesPlugin.d.ts +20 -16
  72. package/dist/src/lib/container/runtime/FederationModulesPlugin.js +55 -47
  73. package/dist/src/lib/container/runtime/FederationModulesPlugin.js.map +1 -1
  74. package/dist/src/lib/container/runtime/FederationRuntimeDependency.d.ts +9 -4
  75. package/dist/src/lib/container/runtime/FederationRuntimeDependency.js +16 -12
  76. package/dist/src/lib/container/runtime/FederationRuntimeDependency.js.map +1 -1
  77. package/dist/src/lib/container/runtime/FederationRuntimeModule.d.ts +16 -11
  78. package/dist/src/lib/container/runtime/FederationRuntimeModule.js +39 -46
  79. package/dist/src/lib/container/runtime/FederationRuntimeModule.js.map +1 -1
  80. package/dist/src/lib/container/runtime/FederationRuntimePlugin.d.ts +31 -20
  81. package/dist/src/lib/container/runtime/FederationRuntimePlugin.js +265 -358
  82. package/dist/src/lib/container/runtime/FederationRuntimePlugin.js.map +1 -1
  83. package/dist/src/lib/container/runtime/getFederationGlobal.d.ts +9 -4
  84. package/dist/src/lib/container/runtime/getFederationGlobal.js +43 -41
  85. package/dist/src/lib/container/runtime/getFederationGlobal.js.map +1 -1
  86. package/dist/src/lib/container/runtime/utils.d.ts +24 -13
  87. package/dist/src/lib/container/runtime/utils.js +83 -101
  88. package/dist/src/lib/container/runtime/utils.js.map +1 -1
  89. package/dist/src/lib/sharing/ConsumeSharedFallbackDependency.d.ts +15 -10
  90. package/dist/src/lib/sharing/ConsumeSharedFallbackDependency.js +27 -25
  91. package/dist/src/lib/sharing/ConsumeSharedFallbackDependency.js.map +1 -1
  92. package/dist/src/lib/sharing/ConsumeSharedModule.d.ts +77 -68
  93. package/dist/src/lib/sharing/ConsumeSharedModule.js +186 -214
  94. package/dist/src/lib/sharing/ConsumeSharedModule.js.map +1 -1
  95. package/dist/src/lib/sharing/ConsumeSharedPlugin.d.ts +13 -9
  96. package/dist/src/lib/sharing/ConsumeSharedPlugin.js +308 -475
  97. package/dist/src/lib/sharing/ConsumeSharedPlugin.js.map +1 -1
  98. package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.d.ts +16 -11
  99. package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.js +107 -137
  100. package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.js.map +1 -1
  101. package/dist/src/lib/sharing/ProvideForSharedDependency.d.ts +14 -9
  102. package/dist/src/lib/sharing/ProvideForSharedDependency.js +25 -25
  103. package/dist/src/lib/sharing/ProvideForSharedDependency.js.map +1 -1
  104. package/dist/src/lib/sharing/ProvideSharedDependency.d.ts +44 -39
  105. package/dist/src/lib/sharing/ProvideSharedDependency.js +72 -76
  106. package/dist/src/lib/sharing/ProvideSharedDependency.js.map +1 -1
  107. package/dist/src/lib/sharing/ProvideSharedModule.d.ts +91 -82
  108. package/dist/src/lib/sharing/ProvideSharedModule.js +177 -184
  109. package/dist/src/lib/sharing/ProvideSharedModule.js.map +1 -1
  110. package/dist/src/lib/sharing/ProvideSharedModuleFactory.d.ts +14 -9
  111. package/dist/src/lib/sharing/ProvideSharedModuleFactory.js +19 -25
  112. package/dist/src/lib/sharing/ProvideSharedModuleFactory.js.map +1 -1
  113. package/dist/src/lib/sharing/ProvideSharedPlugin.d.ts +27 -21
  114. package/dist/src/lib/sharing/ProvideSharedPlugin.js +341 -550
  115. package/dist/src/lib/sharing/ProvideSharedPlugin.js.map +1 -1
  116. package/dist/src/lib/sharing/SharePlugin.d.ts +53 -49
  117. package/dist/src/lib/sharing/SharePlugin.js +86 -100
  118. package/dist/src/lib/sharing/SharePlugin.js.map +1 -1
  119. package/dist/src/lib/sharing/ShareRuntimeModule.d.ts +12 -7
  120. package/dist/src/lib/sharing/ShareRuntimeModule.js +81 -103
  121. package/dist/src/lib/sharing/ShareRuntimeModule.js.map +1 -1
  122. package/dist/src/lib/sharing/resolveMatchedConfigs.d.ts +11 -7
  123. package/dist/src/lib/sharing/resolveMatchedConfigs.js +58 -71
  124. package/dist/src/lib/sharing/resolveMatchedConfigs.js.map +1 -1
  125. package/dist/src/lib/sharing/tree-shaking/CollectSharedEntryPlugin.d.ts +18 -14
  126. package/dist/src/lib/sharing/tree-shaking/CollectSharedEntryPlugin.js +74 -128
  127. package/dist/src/lib/sharing/tree-shaking/CollectSharedEntryPlugin.js.map +1 -1
  128. package/dist/src/lib/sharing/tree-shaking/IndependentSharedPlugin.d.ts +39 -34
  129. package/dist/src/lib/sharing/tree-shaking/IndependentSharedPlugin.js +234 -328
  130. package/dist/src/lib/sharing/tree-shaking/IndependentSharedPlugin.js.map +1 -1
  131. package/dist/src/lib/sharing/tree-shaking/IndependentSharedRuntimeModule.d.ts +16 -11
  132. package/dist/src/lib/sharing/tree-shaking/IndependentSharedRuntimeModule.js +30 -28
  133. package/dist/src/lib/sharing/tree-shaking/IndependentSharedRuntimeModule.js.map +1 -1
  134. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedContainerPlugin.d.ts +28 -24
  135. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedContainerPlugin.js +91 -95
  136. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedContainerPlugin.js.map +1 -1
  137. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedDependency.d.ts +29 -24
  138. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedDependency.js +47 -43
  139. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedDependency.js.map +1 -1
  140. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryDependency.d.ts +20 -15
  141. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryDependency.js +33 -29
  142. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryDependency.js.map +1 -1
  143. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModule.d.ts +85 -77
  144. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModule.js +141 -153
  145. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModule.js.map +1 -1
  146. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModuleFactory.d.ts +15 -10
  147. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModuleFactory.js +20 -24
  148. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModuleFactory.js.map +1 -1
  149. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerPlugin.d.ts +21 -16
  150. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerPlugin.js +157 -231
  151. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerPlugin.js.map +1 -1
  152. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerRuntimeModule.d.ts +14 -9
  153. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerRuntimeModule.js +26 -27
  154. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerRuntimeModule.js.map +1 -1
  155. package/dist/src/lib/sharing/tree-shaking/TreeShakingSharedPlugin.d.ts +18 -13
  156. package/dist/src/lib/sharing/tree-shaking/TreeShakingSharedPlugin.js +41 -49
  157. package/dist/src/lib/sharing/tree-shaking/TreeShakingSharedPlugin.js.map +1 -1
  158. package/dist/src/lib/sharing/utils.d.ts +27 -24
  159. package/dist/src/lib/sharing/utils.js +224 -367
  160. package/dist/src/lib/sharing/utils.js.map +1 -1
  161. package/dist/src/lib/startup/MfStartupChunkDependenciesPlugin.d.ts +11 -7
  162. package/dist/src/lib/startup/MfStartupChunkDependenciesPlugin.js +56 -75
  163. package/dist/src/lib/startup/MfStartupChunkDependenciesPlugin.js.map +1 -1
  164. package/dist/src/lib/startup/StartupHelpers.d.ts +11 -6
  165. package/dist/src/lib/startup/StartupHelpers.js +128 -178
  166. package/dist/src/lib/startup/StartupHelpers.js.map +1 -1
  167. package/dist/src/prefetch.d.ts +3 -2
  168. package/dist/src/prefetch.js +17 -8
  169. package/dist/src/rspack.d.ts +3 -2
  170. package/dist/src/rspack.js +35 -11
  171. package/dist/src/runtime/AddRuntimeRequirementToPromiseExternalPlugin.d.ts +8 -4
  172. package/dist/src/runtime/AddRuntimeRequirementToPromiseExternalPlugin.js +19 -16
  173. package/dist/src/runtime/AddRuntimeRequirementToPromiseExternalPlugin.js.map +1 -1
  174. package/dist/src/runtime.d.ts +1 -1
  175. package/dist/src/runtime.js +11 -18
  176. package/dist/src/schemas/container/ContainerPlugin.check.d.ts +13 -5
  177. package/dist/src/schemas/container/ContainerPlugin.check.js +958 -1218
  178. package/dist/src/schemas/container/ContainerPlugin.check.js.map +1 -1
  179. package/dist/src/schemas/container/ContainerPlugin.d.ts +271 -268
  180. package/dist/src/schemas/container/ContainerPlugin.js +273 -361
  181. package/dist/src/schemas/container/ContainerPlugin.js.map +1 -1
  182. package/dist/src/schemas/container/ContainerReferencePlugin.check.d.ts +13 -5
  183. package/dist/src/schemas/container/ContainerReferencePlugin.check.js +335 -443
  184. package/dist/src/schemas/container/ContainerReferencePlugin.check.js.map +1 -1
  185. package/dist/src/schemas/container/ContainerReferencePlugin.d.ts +102 -99
  186. package/dist/src/schemas/container/ContainerReferencePlugin.js +122 -162
  187. package/dist/src/schemas/container/ContainerReferencePlugin.js.map +1 -1
  188. package/dist/src/schemas/container/ExternalsType.check.d.ts +13 -5
  189. package/dist/src/schemas/container/ExternalsType.check.js +36 -62
  190. package/dist/src/schemas/container/ExternalsType.check.js.map +1 -1
  191. package/dist/src/schemas/container/ExternalsType.d.ts +5 -2
  192. package/dist/src/schemas/container/ExternalsType.js +8 -11
  193. package/dist/src/schemas/container/ExternalsType.js.map +1 -1
  194. package/dist/src/schemas/container/ModuleFederationPlugin.check.js +3001 -4812
  195. package/dist/src/schemas/container/ModuleFederationPlugin.check.js.map +1 -1
  196. package/dist/src/schemas/container/ModuleFederationPlugin.d.ts +819 -814
  197. package/dist/src/schemas/container/ModuleFederationPlugin.js +780 -1053
  198. package/dist/src/schemas/container/ModuleFederationPlugin.js.map +1 -1
  199. package/dist/src/schemas/sharing/ConsumeSharedPlugin.check.d.ts +13 -5
  200. package/dist/src/schemas/sharing/ConsumeSharedPlugin.check.js +568 -768
  201. package/dist/src/schemas/sharing/ConsumeSharedPlugin.check.js.map +1 -1
  202. package/dist/src/schemas/sharing/ConsumeSharedPlugin.d.ts +197 -194
  203. package/dist/src/schemas/sharing/ConsumeSharedPlugin.js +212 -238
  204. package/dist/src/schemas/sharing/ConsumeSharedPlugin.js.map +1 -1
  205. package/dist/src/schemas/sharing/ProvideSharedPlugin.check.d.ts +13 -5
  206. package/dist/src/schemas/sharing/ProvideSharedPlugin.check.js +598 -804
  207. package/dist/src/schemas/sharing/ProvideSharedPlugin.check.js.map +1 -1
  208. package/dist/src/schemas/sharing/ProvideSharedPlugin.d.ts +184 -181
  209. package/dist/src/schemas/sharing/ProvideSharedPlugin.js +196 -229
  210. package/dist/src/schemas/sharing/ProvideSharedPlugin.js.map +1 -1
  211. package/dist/src/schemas/sharing/ProviderSharedPlugin.check.d.ts +12 -4
  212. package/dist/src/schemas/sharing/ProviderSharedPlugin.check.js +285 -482
  213. package/dist/src/schemas/sharing/ProviderSharedPlugin.check.js.map +1 -1
  214. package/dist/src/schemas/sharing/ProviderSharedPlugin.d.ts +103 -100
  215. package/dist/src/schemas/sharing/ProviderSharedPlugin.js +104 -126
  216. package/dist/src/schemas/sharing/ProviderSharedPlugin.js.map +1 -1
  217. package/dist/src/schemas/sharing/SharePlugin.check.d.ts +13 -5
  218. package/dist/src/schemas/sharing/SharePlugin.check.js +749 -965
  219. package/dist/src/schemas/sharing/SharePlugin.check.js.map +1 -1
  220. package/dist/src/schemas/sharing/SharePlugin.d.ts +245 -242
  221. package/dist/src/schemas/sharing/SharePlugin.js +256 -293
  222. package/dist/src/schemas/sharing/SharePlugin.js.map +1 -1
  223. package/dist/src/utils.d.ts +3 -0
  224. package/dist/src/utils.js +35 -26
  225. package/dist/src/utils.js.map +1 -1
  226. package/dist/src/webpack.d.ts +2 -2
  227. package/dist/src/webpack.js +6 -40
  228. package/dist/src/wrapper/AsyncBoundaryPlugin.d.ts +9 -4
  229. package/dist/src/wrapper/AsyncBoundaryPlugin.js +12 -11
  230. package/dist/src/wrapper/AsyncBoundaryPlugin.js.map +1 -1
  231. package/dist/src/wrapper/BaseWrapperPlugin.d.ts +18 -13
  232. package/dist/src/wrapper/BaseWrapperPlugin.js +39 -39
  233. package/dist/src/wrapper/BaseWrapperPlugin.js.map +1 -1
  234. package/dist/src/wrapper/ConsumeSharedPlugin.d.ts +10 -4
  235. package/dist/src/wrapper/ConsumeSharedPlugin.js +12 -11
  236. package/dist/src/wrapper/ConsumeSharedPlugin.js.map +1 -1
  237. package/dist/src/wrapper/ContainerPlugin.d.ts +9 -4
  238. package/dist/src/wrapper/ContainerPlugin.js +12 -11
  239. package/dist/src/wrapper/ContainerPlugin.js.map +1 -1
  240. package/dist/src/wrapper/ContainerReferencePlugin.d.ts +9 -4
  241. package/dist/src/wrapper/ContainerReferencePlugin.js +12 -11
  242. package/dist/src/wrapper/ContainerReferencePlugin.js.map +1 -1
  243. package/dist/src/wrapper/FederationModulesPlugin.d.ts +18 -10
  244. package/dist/src/wrapper/FederationModulesPlugin.js +19 -19
  245. package/dist/src/wrapper/FederationModulesPlugin.js.map +1 -1
  246. package/dist/src/wrapper/FederationRuntimePlugin.d.ts +11 -6
  247. package/dist/src/wrapper/FederationRuntimePlugin.js +18 -17
  248. package/dist/src/wrapper/FederationRuntimePlugin.js.map +1 -1
  249. package/dist/src/wrapper/HoistContainerReferencesPlugin.d.ts +8 -3
  250. package/dist/src/wrapper/HoistContainerReferencesPlugin.js +12 -11
  251. package/dist/src/wrapper/HoistContainerReferencesPlugin.js.map +1 -1
  252. package/dist/src/wrapper/ModuleFederationPlugin.d.ts +12 -7
  253. package/dist/src/wrapper/ModuleFederationPlugin.js +73 -99
  254. package/dist/src/wrapper/ModuleFederationPlugin.js.map +1 -1
  255. package/dist/src/wrapper/ProvideSharedPlugin.d.ts +10 -4
  256. package/dist/src/wrapper/ProvideSharedPlugin.js +12 -11
  257. package/dist/src/wrapper/ProvideSharedPlugin.js.map +1 -1
  258. package/dist/src/wrapper/SharePlugin.d.ts +10 -4
  259. package/dist/src/wrapper/SharePlugin.js +12 -11
  260. package/dist/src/wrapper/SharePlugin.js.map +1 -1
  261. package/dist/src/wrapper/TreeShakingSharedPlugin.d.ts +9 -4
  262. package/dist/src/wrapper/TreeShakingSharedPlugin.js +12 -11
  263. package/dist/src/wrapper/TreeShakingSharedPlugin.js.map +1 -1
  264. package/package.json +20 -13
  265. package/dist/package.json +0 -110
  266. package/dist/src/declarations/plugins/container/AsyncDependenciesBlock.d.ts +0 -57
  267. package/dist/src/declarations/plugins/container/ModuleFactory.d.ts +0 -33
  268. package/dist/src/declarations/plugins/container/ObjectDeserializerContext.d.ts +0 -4
  269. package/dist/src/declarations/plugins/container/StaticExportsDependency.d.ts +0 -28
  270. package/dist/src/declarations/plugins/container/Template.d.ts +0 -198
  271. package/dist/src/declarations/plugins/container/WebpackError.d.ts +0 -33
  272. package/dist/src/declarations/plugins/sharing/ConsumeSharedModule.d.ts +0 -86
  273. package/dist/src/declarations/plugins/sharing/ConsumeSharedPlugin.d.ts +0 -100
  274. package/dist/src/declarations/plugins/sharing/ProvideSharedPlugin.d.ts +0 -102
  275. package/dist/src/declarations/plugins/sharing/SharePlugin.d.ts +0 -116
  276. package/dist/src/lib/container/runtime/ChildCompilationRuntimePlugin.d.ts +0 -20
  277. package/dist/src/lib/container/runtime/ChildCompilationRuntimePlugin.js +0 -222
  278. package/dist/src/lib/container/runtime/ChildCompilationRuntimePlugin.js.map +0 -1
  279. package/dist/src/prefetch.js.map +0 -1
  280. package/dist/src/rspack.js.map +0 -1
  281. package/dist/src/runtime.js.map +0 -1
  282. package/dist/src/types/runtime.d.ts +0 -10
  283. package/dist/src/types/runtime.js +0 -3
  284. package/dist/src/types/runtime.js.map +0 -1
  285. package/dist/src/webpack.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"ContainerReferencePlugin.check.js","sourceRoot":"","sources":["../../../../src/schemas/container/ContainerReferencePlugin.check.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ContainerReferencePlugin.check.js","names":[],"sources":["../../../../src/schemas/container/ContainerReferencePlugin.check.ts"],"sourcesContent":["// @ts-nocheck\n/* eslint-disable */\n/*\n * This file was automatically generated.\n * DO NOT MODIFY BY HAND.\n */\nexport const validate = s;\nexport default s;\nconst r = {\n enum: [\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 'module-import',\n 'script',\n 'node-commonjs',\n ],\n};\nfunction t(\n r,\n {\n instancePath: e = '',\n parentData: n,\n parentDataProperty: a,\n rootData: s = r,\n } = {},\n) {\n if (!Array.isArray(r))\n return ((t.errors = [{ params: { type: 'array' } }]), !1);\n {\n const e = r.length;\n for (let n = 0; n < e; n++) {\n let e = r[n];\n const a = 0;\n if ('string' != typeof e)\n return ((t.errors = [{ params: { type: 'string' } }]), !1);\n if (e.length < 1) return ((t.errors = [{ params: {} }]), !1);\n if (0 !== a) break;\n }\n }\n return ((t.errors = null), !0);\n}\nfunction e(\n r,\n {\n instancePath: n = '',\n parentData: a,\n parentDataProperty: s,\n rootData: o = r,\n } = {},\n) {\n let l = null,\n p = 0;\n if (0 === p) {\n if (!r || 'object' != typeof r || Array.isArray(r))\n return ((e.errors = [{ params: { type: 'object' } }]), !1);\n {\n let a;\n if (void 0 === r.external && (a = 'external'))\n return ((e.errors = [{ params: { missingProperty: a } }]), !1);\n {\n const a = p;\n for (const t in r)\n if ('external' !== t && 'shareScope' !== t)\n return ((e.errors = [{ params: { additionalProperty: t } }]), !1);\n if (a === p) {\n if (void 0 !== r.external) {\n let a = r.external;\n const s = p,\n u = p;\n let f = !1;\n const m = p;\n if (p == p)\n if ('string' == typeof a) {\n if (a.length < 1) {\n const r = { params: {} };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n } else {\n const r = { params: { type: 'string' } };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n var i = m === p;\n if (((f = f || i), !f)) {\n const e = p;\n (t(a, {\n instancePath: n + '/external',\n parentData: r,\n parentDataProperty: 'external',\n rootData: o,\n }) ||\n ((l = null === l ? t.errors : l.concat(t.errors)),\n (p = l.length)),\n (i = e === p),\n (f = f || i));\n }\n if (!f) {\n const r = { params: {} };\n return (\n null === l ? (l = [r]) : l.push(r),\n p++,\n (e.errors = l),\n !1\n );\n }\n ((p = u), null !== l && (u ? (l.length = u) : (l = null)));\n var c = s === p;\n } else c = !0;\n if (c)\n if (void 0 !== r.shareScope) {\n let t = r.shareScope;\n const n = p,\n a = p;\n let s = !1;\n const o = p;\n if (p === o)\n if ('string' == typeof t) {\n if (t.length < 1) {\n const r = { params: {} };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n } else {\n const r = { params: { type: 'string' } };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n var u = o === p;\n if (((s = s || u), !s)) {\n const r = p;\n if (p === r)\n if (Array.isArray(t)) {\n const r = t.length;\n for (let e = 0; e < r; e++) {\n let r = t[e];\n const n = p;\n if (p === n)\n if ('string' == typeof r) {\n if (r.length < 1) {\n const r = { params: {} };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n } else {\n const r = { params: { type: 'string' } };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n if (n !== p) break;\n }\n } else {\n const r = { params: { type: 'array' } };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n ((u = r === p), (s = s || u));\n }\n if (!s) {\n const r = { params: {} };\n return (\n null === l ? (l = [r]) : l.push(r),\n p++,\n (e.errors = l),\n !1\n );\n }\n ((p = a),\n null !== l && (a ? (l.length = a) : (l = null)),\n (c = n === p));\n } else c = !0;\n }\n }\n }\n }\n return ((e.errors = l), 0 === p);\n}\nfunction n(\n r,\n {\n instancePath: a = '',\n parentData: s,\n parentDataProperty: o,\n rootData: l = r,\n } = {},\n) {\n let p = null,\n i = 0;\n if (0 === i) {\n if (!r || 'object' != typeof r || Array.isArray(r))\n return ((n.errors = [{ params: { type: 'object' } }]), !1);\n for (const s in r) {\n let o = r[s];\n const u = i,\n f = i;\n let m = !1;\n const y = i;\n e(o, {\n instancePath: a + '/' + s.replace(/~/g, '~0').replace(/\\//g, '~1'),\n parentData: r,\n parentDataProperty: s,\n rootData: l,\n }) || ((p = null === p ? e.errors : p.concat(e.errors)), (i = p.length));\n var c = y === i;\n if (((m = m || c), !m)) {\n const e = i;\n if (i == i)\n if ('string' == typeof o) {\n if (o.length < 1) {\n const r = { params: {} };\n (null === p ? (p = [r]) : p.push(r), i++);\n }\n } else {\n const r = { params: { type: 'string' } };\n (null === p ? (p = [r]) : p.push(r), i++);\n }\n if (((c = e === i), (m = m || c), !m)) {\n const e = i;\n (t(o, {\n instancePath: a + '/' + s.replace(/~/g, '~0').replace(/\\//g, '~1'),\n parentData: r,\n parentDataProperty: s,\n rootData: l,\n }) ||\n ((p = null === p ? t.errors : p.concat(t.errors)), (i = p.length)),\n (c = e === i),\n (m = m || c));\n }\n }\n if (!m) {\n const r = { params: {} };\n return (null === p ? (p = [r]) : p.push(r), i++, (n.errors = p), !1);\n }\n if (((i = f), null !== p && (f ? (p.length = f) : (p = null)), u !== i))\n break;\n }\n }\n return ((n.errors = p), 0 === i);\n}\nfunction a(\n r,\n {\n instancePath: t = '',\n parentData: e,\n parentDataProperty: s,\n rootData: o = r,\n } = {},\n) {\n let l = null,\n p = 0;\n const i = p;\n let c = !1;\n const u = p;\n if (p === u)\n if (Array.isArray(r)) {\n const e = r.length;\n for (let a = 0; a < e; a++) {\n let e = r[a];\n const s = p,\n i = p;\n let c = !1;\n const u = p;\n if (p == p)\n if ('string' == typeof e) {\n if (e.length < 1) {\n const r = { params: {} };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n } else {\n const r = { params: { type: 'string' } };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n var f = u === p;\n if (((c = c || f), !c)) {\n const s = p;\n (n(e, {\n instancePath: t + '/' + a,\n parentData: r,\n parentDataProperty: a,\n rootData: o,\n }) ||\n ((l = null === l ? n.errors : l.concat(n.errors)), (p = l.length)),\n (f = s === p),\n (c = c || f));\n }\n if (c) ((p = i), null !== l && (i ? (l.length = i) : (l = null)));\n else {\n const r = { params: {} };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n if (s !== p) break;\n }\n } else {\n const r = { params: { type: 'array' } };\n (null === l ? (l = [r]) : l.push(r), p++);\n }\n var m = u === p;\n if (((c = c || m), !c)) {\n const a = p;\n (n(r, {\n instancePath: t,\n parentData: e,\n parentDataProperty: s,\n rootData: o,\n }) || ((l = null === l ? n.errors : l.concat(n.errors)), (p = l.length)),\n (m = a === p),\n (c = c || m));\n }\n if (!c) {\n const r = { params: {} };\n return (null === l ? (l = [r]) : l.push(r), p++, (a.errors = l), !1);\n }\n return (\n (p = i),\n null !== l && (i ? (l.length = i) : (l = null)),\n (a.errors = l),\n 0 === p\n );\n}\nfunction s(\n t,\n {\n instancePath: e = '',\n parentData: n,\n parentDataProperty: o,\n rootData: l = t,\n } = {},\n) {\n let p = null,\n i = 0;\n if (0 === i) {\n if (!t || 'object' != typeof t || Array.isArray(t))\n return ((s.errors = [{ params: { type: 'object' } }]), !1);\n {\n let n;\n if (\n (void 0 === t.remoteType && (n = 'remoteType')) ||\n (void 0 === t.remotes && (n = 'remotes'))\n )\n return ((s.errors = [{ params: { missingProperty: n } }]), !1);\n {\n const n = i;\n for (const r in t)\n if (\n 'async' !== r &&\n 'remoteType' !== r &&\n 'remotes' !== r &&\n 'shareScope' !== r\n )\n return ((s.errors = [{ params: { additionalProperty: r } }]), !1);\n if (n === i) {\n if (void 0 !== t.async) {\n const r = i;\n if ('boolean' != typeof t.async)\n return ((s.errors = [{ params: { type: 'boolean' } }]), !1);\n var c = r === i;\n } else c = !0;\n if (c) {\n if (void 0 !== t.remoteType) {\n let e = t.remoteType;\n const n = i,\n a = i;\n let o = !1,\n l = null;\n const u = i;\n if (\n 'var' !== e &&\n 'module' !== e &&\n 'assign' !== e &&\n 'this' !== e &&\n 'window' !== e &&\n 'self' !== e &&\n 'global' !== e &&\n 'commonjs' !== e &&\n 'commonjs2' !== e &&\n 'commonjs-module' !== e &&\n 'commonjs-static' !== e &&\n 'amd' !== e &&\n 'amd-require' !== e &&\n 'umd' !== e &&\n 'umd2' !== e &&\n 'jsonp' !== e &&\n 'system' !== e &&\n 'promise' !== e &&\n 'import' !== e &&\n 'module-import' !== e &&\n 'script' !== e &&\n 'node-commonjs' !== e\n ) {\n const t = { params: { allowedValues: r.enum } };\n (null === p ? (p = [t]) : p.push(t), i++);\n }\n if ((u === i && ((o = !0), (l = 0)), !o)) {\n const r = { params: { passingSchemas: l } };\n return (\n null === p ? (p = [r]) : p.push(r),\n i++,\n (s.errors = p),\n !1\n );\n }\n ((i = a),\n null !== p && (a ? (p.length = a) : (p = null)),\n (c = n === i));\n } else c = !0;\n if (c) {\n if (void 0 !== t.remotes) {\n const r = i;\n (a(t.remotes, {\n instancePath: e + '/remotes',\n parentData: t,\n parentDataProperty: 'remotes',\n rootData: l,\n }) ||\n ((p = null === p ? a.errors : p.concat(a.errors)),\n (i = p.length)),\n (c = r === i));\n } else c = !0;\n if (c)\n if (void 0 !== t.shareScope) {\n let r = t.shareScope;\n const e = i,\n n = i;\n let a = !1;\n const o = i;\n if (i === o)\n if ('string' == typeof r) {\n if (r.length < 1) {\n const r = { params: {} };\n (null === p ? (p = [r]) : p.push(r), i++);\n }\n } else {\n const r = { params: { type: 'string' } };\n (null === p ? (p = [r]) : p.push(r), i++);\n }\n var u = o === i;\n if (((a = a || u), !a)) {\n const t = i;\n if (i === t)\n if (Array.isArray(r)) {\n const t = r.length;\n for (let e = 0; e < t; e++) {\n let t = r[e];\n const n = i;\n if (i === n)\n if ('string' == typeof t) {\n if (t.length < 1) {\n const r = { params: {} };\n (null === p ? (p = [r]) : p.push(r), i++);\n }\n } else {\n const r = { params: { type: 'string' } };\n (null === p ? (p = [r]) : p.push(r), i++);\n }\n if (n !== i) break;\n }\n } else {\n const r = { params: { type: 'array' } };\n (null === p ? (p = [r]) : p.push(r), i++);\n }\n ((u = t === i), (a = a || u));\n }\n if (!a) {\n const r = { params: {} };\n return (\n null === p ? (p = [r]) : p.push(r),\n i++,\n (s.errors = p),\n !1\n );\n }\n ((i = n),\n null !== p && (n ? (p.length = n) : (p = null)),\n (c = e === i));\n } else c = !0;\n }\n }\n }\n }\n }\n }\n return ((s.errors = p), 0 === i);\n}\n"],"mappings":"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"}
@@ -1,112 +1,115 @@
1
+ //#region src/schemas/container/ContainerReferencePlugin.d.ts
1
2
  declare const _default: {
2
- readonly definitions: {
3
- readonly ExternalsType: {
4
- readonly description: "Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value).";
5
- readonly enum: readonly ["var", "module", "assign", "this", "window", "self", "global", "commonjs", "commonjs2", "commonjs-module", "commonjs-static", "amd", "amd-require", "umd", "umd2", "jsonp", "system", "promise", "import", "module-import", "script", "node-commonjs"];
6
- };
7
- readonly Remotes: {
8
- readonly description: "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.";
9
- readonly anyOf: readonly [{
10
- readonly type: "array";
11
- readonly items: {
12
- readonly description: "Container locations and request scopes from which modules should be resolved and loaded at runtime.";
13
- readonly anyOf: readonly [{
14
- readonly $ref: "#/definitions/RemotesItem";
15
- }, {
16
- readonly $ref: "#/definitions/RemotesObject";
17
- }];
18
- };
19
- }, {
20
- readonly $ref: "#/definitions/RemotesObject";
21
- }];
3
+ readonly definitions: {
4
+ readonly ExternalsType: {
5
+ readonly description: "Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value).";
6
+ readonly enum: readonly ["var", "module", "assign", "this", "window", "self", "global", "commonjs", "commonjs2", "commonjs-module", "commonjs-static", "amd", "amd-require", "umd", "umd2", "jsonp", "system", "promise", "import", "module-import", "script", "node-commonjs"];
7
+ };
8
+ readonly Remotes: {
9
+ readonly description: "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.";
10
+ readonly anyOf: readonly [{
11
+ readonly type: "array";
12
+ readonly items: {
13
+ readonly description: "Container locations and request scopes from which modules should be resolved and loaded at runtime.";
14
+ readonly anyOf: readonly [{
15
+ readonly $ref: "#/definitions/RemotesItem";
16
+ }, {
17
+ readonly $ref: "#/definitions/RemotesObject";
18
+ }];
22
19
  };
23
- readonly RemotesConfig: {
24
- readonly description: "Advanced configuration for container locations from which modules should be resolved and loaded at runtime.";
25
- readonly type: "object";
26
- readonly additionalProperties: false;
27
- readonly properties: {
28
- readonly external: {
29
- readonly description: "Container locations from which modules should be resolved and loaded at runtime.";
30
- readonly anyOf: readonly [{
31
- readonly $ref: "#/definitions/RemotesItem";
32
- }, {
33
- readonly $ref: "#/definitions/RemotesItems";
34
- }];
35
- };
36
- readonly shareScope: {
37
- readonly description: "The name of the share scope shared with this remote.";
38
- readonly anyOf: readonly [{
39
- readonly type: "string";
40
- readonly minLength: 1;
41
- }, {
42
- readonly type: "array";
43
- readonly items: {
44
- readonly type: "string";
45
- readonly minLength: 1;
46
- };
47
- }];
48
- };
49
- };
50
- readonly required: readonly ["external"];
20
+ }, {
21
+ readonly $ref: "#/definitions/RemotesObject";
22
+ }];
23
+ };
24
+ readonly RemotesConfig: {
25
+ readonly description: "Advanced configuration for container locations from which modules should be resolved and loaded at runtime.";
26
+ readonly type: "object";
27
+ readonly additionalProperties: false;
28
+ readonly properties: {
29
+ readonly external: {
30
+ readonly description: "Container locations from which modules should be resolved and loaded at runtime.";
31
+ readonly anyOf: readonly [{
32
+ readonly $ref: "#/definitions/RemotesItem";
33
+ }, {
34
+ readonly $ref: "#/definitions/RemotesItems";
35
+ }];
51
36
  };
52
- readonly RemotesItem: {
53
- readonly description: "Container location from which modules should be resolved and loaded at runtime.";
37
+ readonly shareScope: {
38
+ readonly description: "The name of the share scope shared with this remote.";
39
+ readonly anyOf: readonly [{
54
40
  readonly type: "string";
55
41
  readonly minLength: 1;
56
- };
57
- readonly RemotesItems: {
58
- readonly description: "Container locations from which modules should be resolved and loaded at runtime.";
42
+ }, {
59
43
  readonly type: "array";
60
44
  readonly items: {
61
- readonly $ref: "#/definitions/RemotesItem";
62
- };
63
- };
64
- readonly RemotesObject: {
65
- readonly description: "Container locations from which modules should be resolved and loaded at runtime. Property names are used as request scopes.";
66
- readonly type: "object";
67
- readonly additionalProperties: {
68
- readonly description: "Container locations from which modules should be resolved and loaded at runtime.";
69
- readonly anyOf: readonly [{
70
- readonly $ref: "#/definitions/RemotesConfig";
71
- }, {
72
- readonly $ref: "#/definitions/RemotesItem";
73
- }, {
74
- readonly $ref: "#/definitions/RemotesItems";
75
- }];
45
+ readonly type: "string";
46
+ readonly minLength: 1;
76
47
  };
48
+ }];
77
49
  };
50
+ };
51
+ readonly required: readonly ["external"];
78
52
  };
79
- readonly title: "ContainerReferencePluginOptions";
80
- readonly type: "object";
81
- readonly additionalProperties: false;
82
- readonly properties: {
83
- readonly async: {
84
- readonly description: "Enable/disable asynchronous loading of runtime modules. When enabled, entry points will be wrapped in asynchronous chunks.";
85
- readonly type: "boolean";
86
- };
87
- readonly remoteType: {
88
- readonly description: "The external type of the remote containers.";
89
- readonly oneOf: readonly [{
90
- readonly $ref: "#/definitions/ExternalsType";
91
- }];
92
- };
93
- readonly remotes: {
94
- readonly $ref: "#/definitions/Remotes";
95
- };
96
- readonly shareScope: {
97
- readonly description: "The name of the share scope shared with all remotes (defaults to 'default').";
98
- readonly anyOf: readonly [{
99
- readonly type: "string";
100
- readonly minLength: 1;
101
- }, {
102
- readonly type: "array";
103
- readonly items: {
104
- readonly type: "string";
105
- readonly minLength: 1;
106
- };
107
- }];
53
+ readonly RemotesItem: {
54
+ readonly description: "Container location from which modules should be resolved and loaded at runtime.";
55
+ readonly type: "string";
56
+ readonly minLength: 1;
57
+ };
58
+ readonly RemotesItems: {
59
+ readonly description: "Container locations from which modules should be resolved and loaded at runtime.";
60
+ readonly type: "array";
61
+ readonly items: {
62
+ readonly $ref: "#/definitions/RemotesItem";
63
+ };
64
+ };
65
+ readonly RemotesObject: {
66
+ readonly description: "Container locations from which modules should be resolved and loaded at runtime. Property names are used as request scopes.";
67
+ readonly type: "object";
68
+ readonly additionalProperties: {
69
+ readonly description: "Container locations from which modules should be resolved and loaded at runtime.";
70
+ readonly anyOf: readonly [{
71
+ readonly $ref: "#/definitions/RemotesConfig";
72
+ }, {
73
+ readonly $ref: "#/definitions/RemotesItem";
74
+ }, {
75
+ readonly $ref: "#/definitions/RemotesItems";
76
+ }];
77
+ };
78
+ };
79
+ };
80
+ readonly title: "ContainerReferencePluginOptions";
81
+ readonly type: "object";
82
+ readonly additionalProperties: false;
83
+ readonly properties: {
84
+ readonly async: {
85
+ readonly description: "Enable/disable asynchronous loading of runtime modules. When enabled, entry points will be wrapped in asynchronous chunks.";
86
+ readonly type: "boolean";
87
+ };
88
+ readonly remoteType: {
89
+ readonly description: "The external type of the remote containers.";
90
+ readonly oneOf: readonly [{
91
+ readonly $ref: "#/definitions/ExternalsType";
92
+ }];
93
+ };
94
+ readonly remotes: {
95
+ readonly $ref: "#/definitions/Remotes";
96
+ };
97
+ readonly shareScope: {
98
+ readonly description: "The name of the share scope shared with all remotes (defaults to 'default').";
99
+ readonly anyOf: readonly [{
100
+ readonly type: "string";
101
+ readonly minLength: 1;
102
+ }, {
103
+ readonly type: "array";
104
+ readonly items: {
105
+ readonly type: "string";
106
+ readonly minLength: 1;
108
107
  };
108
+ }];
109
109
  };
110
- readonly required: readonly ["remoteType", "remotes"];
110
+ };
111
+ readonly required: readonly ["remoteType", "remotes"];
111
112
  };
112
- export default _default;
113
+ //#endregion
114
+ export { _default as default };
115
+ //# sourceMappingURL=ContainerReferencePlugin.d.ts.map
@@ -1,164 +1,124 @@
1
- "use strict";
2
- // @ts-nocheck
3
- /* eslint-disable */
4
- /*
5
- * This file was automatically generated.
6
- * DO NOT MODIFY BY HAND.
7
- */
8
- Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.default = {
10
- definitions: {
11
- ExternalsType: {
12
- description: "Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value).",
13
- enum: [
14
- 'var',
15
- 'module',
16
- 'assign',
17
- 'this',
18
- 'window',
19
- 'self',
20
- 'global',
21
- 'commonjs',
22
- 'commonjs2',
23
- 'commonjs-module',
24
- 'commonjs-static',
25
- 'amd',
26
- 'amd-require',
27
- 'umd',
28
- 'umd2',
29
- 'jsonp',
30
- 'system',
31
- 'promise',
32
- 'import',
33
- 'module-import',
34
- 'script',
35
- 'node-commonjs',
36
- ],
37
- },
38
- Remotes: {
39
- description: '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.',
40
- anyOf: [
41
- {
42
- type: 'array',
43
- items: {
44
- description: 'Container locations and request scopes from which modules should be resolved and loaded at runtime.',
45
- anyOf: [
46
- {
47
- $ref: '#/definitions/RemotesItem',
48
- },
49
- {
50
- $ref: '#/definitions/RemotesObject',
51
- },
52
- ],
53
- },
54
- },
55
- {
56
- $ref: '#/definitions/RemotesObject',
57
- },
58
- ],
59
- },
60
- RemotesConfig: {
61
- description: 'Advanced configuration for container locations from which modules should be resolved and loaded at runtime.',
62
- type: 'object',
63
- additionalProperties: false,
64
- properties: {
65
- external: {
66
- description: 'Container locations from which modules should be resolved and loaded at runtime.',
67
- anyOf: [
68
- {
69
- $ref: '#/definitions/RemotesItem',
70
- },
71
- {
72
- $ref: '#/definitions/RemotesItems',
73
- },
74
- ],
75
- },
76
- shareScope: {
77
- description: 'The name of the share scope shared with this remote.',
78
- anyOf: [
79
- {
80
- type: 'string',
81
- minLength: 1,
82
- },
83
- {
84
- type: 'array',
85
- items: {
86
- type: 'string',
87
- minLength: 1,
88
- },
89
- },
90
- ],
91
- },
92
- },
93
- required: ['external'],
94
- },
95
- RemotesItem: {
96
- description: 'Container location from which modules should be resolved and loaded at runtime.',
97
- type: 'string',
98
- minLength: 1,
99
- },
100
- RemotesItems: {
101
- description: 'Container locations from which modules should be resolved and loaded at runtime.',
102
- type: 'array',
103
- items: {
104
- $ref: '#/definitions/RemotesItem',
105
- },
106
- },
107
- RemotesObject: {
108
- description: 'Container locations from which modules should be resolved and loaded at runtime. Property names are used as request scopes.',
109
- type: 'object',
110
- additionalProperties: {
111
- description: 'Container locations from which modules should be resolved and loaded at runtime.',
112
- anyOf: [
113
- {
114
- $ref: '#/definitions/RemotesConfig',
115
- },
116
- {
117
- $ref: '#/definitions/RemotesItem',
118
- },
119
- {
120
- $ref: '#/definitions/RemotesItems',
121
- },
122
- ],
123
- },
124
- },
125
- },
126
- title: 'ContainerReferencePluginOptions',
127
- type: 'object',
128
- additionalProperties: false,
129
- properties: {
130
- async: {
131
- description: 'Enable/disable asynchronous loading of runtime modules. When enabled, entry points will be wrapped in asynchronous chunks.',
132
- type: 'boolean',
133
- },
134
- remoteType: {
135
- description: 'The external type of the remote containers.',
136
- oneOf: [
137
- {
138
- $ref: '#/definitions/ExternalsType',
139
- },
140
- ],
141
- },
142
- remotes: {
143
- $ref: '#/definitions/Remotes',
144
- },
145
- shareScope: {
146
- description: "The name of the share scope shared with all remotes (defaults to 'default').",
147
- anyOf: [
148
- {
149
- type: 'string',
150
- minLength: 1,
151
- },
152
- {
153
- type: 'array',
154
- items: {
155
- type: 'string',
156
- minLength: 1,
157
- },
158
- },
159
- ],
160
- },
161
- },
162
- required: ['remoteType', 'remotes'],
1
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
2
+ const require_runtime = require('../../_virtual/_rolldown/runtime.js');
3
+
4
+ //#region src/schemas/container/ContainerReferencePlugin.ts
5
+ var ContainerReferencePlugin_default = {
6
+ definitions: {
7
+ ExternalsType: {
8
+ description: "Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value).",
9
+ enum: [
10
+ "var",
11
+ "module",
12
+ "assign",
13
+ "this",
14
+ "window",
15
+ "self",
16
+ "global",
17
+ "commonjs",
18
+ "commonjs2",
19
+ "commonjs-module",
20
+ "commonjs-static",
21
+ "amd",
22
+ "amd-require",
23
+ "umd",
24
+ "umd2",
25
+ "jsonp",
26
+ "system",
27
+ "promise",
28
+ "import",
29
+ "module-import",
30
+ "script",
31
+ "node-commonjs"
32
+ ]
33
+ },
34
+ Remotes: {
35
+ description: "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.",
36
+ anyOf: [{
37
+ type: "array",
38
+ items: {
39
+ description: "Container locations and request scopes from which modules should be resolved and loaded at runtime.",
40
+ anyOf: [{ $ref: "#/definitions/RemotesItem" }, { $ref: "#/definitions/RemotesObject" }]
41
+ }
42
+ }, { $ref: "#/definitions/RemotesObject" }]
43
+ },
44
+ RemotesConfig: {
45
+ description: "Advanced configuration for container locations from which modules should be resolved and loaded at runtime.",
46
+ type: "object",
47
+ additionalProperties: false,
48
+ properties: {
49
+ external: {
50
+ description: "Container locations from which modules should be resolved and loaded at runtime.",
51
+ anyOf: [{ $ref: "#/definitions/RemotesItem" }, { $ref: "#/definitions/RemotesItems" }]
52
+ },
53
+ shareScope: {
54
+ description: "The name of the share scope shared with this remote.",
55
+ anyOf: [{
56
+ type: "string",
57
+ minLength: 1
58
+ }, {
59
+ type: "array",
60
+ items: {
61
+ type: "string",
62
+ minLength: 1
63
+ }
64
+ }]
65
+ }
66
+ },
67
+ required: ["external"]
68
+ },
69
+ RemotesItem: {
70
+ description: "Container location from which modules should be resolved and loaded at runtime.",
71
+ type: "string",
72
+ minLength: 1
73
+ },
74
+ RemotesItems: {
75
+ description: "Container locations from which modules should be resolved and loaded at runtime.",
76
+ type: "array",
77
+ items: { $ref: "#/definitions/RemotesItem" }
78
+ },
79
+ RemotesObject: {
80
+ description: "Container locations from which modules should be resolved and loaded at runtime. Property names are used as request scopes.",
81
+ type: "object",
82
+ additionalProperties: {
83
+ description: "Container locations from which modules should be resolved and loaded at runtime.",
84
+ anyOf: [
85
+ { $ref: "#/definitions/RemotesConfig" },
86
+ { $ref: "#/definitions/RemotesItem" },
87
+ { $ref: "#/definitions/RemotesItems" }
88
+ ]
89
+ }
90
+ }
91
+ },
92
+ title: "ContainerReferencePluginOptions",
93
+ type: "object",
94
+ additionalProperties: false,
95
+ properties: {
96
+ async: {
97
+ description: "Enable/disable asynchronous loading of runtime modules. When enabled, entry points will be wrapped in asynchronous chunks.",
98
+ type: "boolean"
99
+ },
100
+ remoteType: {
101
+ description: "The external type of the remote containers.",
102
+ oneOf: [{ $ref: "#/definitions/ExternalsType" }]
103
+ },
104
+ remotes: { $ref: "#/definitions/Remotes" },
105
+ shareScope: {
106
+ description: "The name of the share scope shared with all remotes (defaults to 'default').",
107
+ anyOf: [{
108
+ type: "string",
109
+ minLength: 1
110
+ }, {
111
+ type: "array",
112
+ items: {
113
+ type: "string",
114
+ minLength: 1
115
+ }
116
+ }]
117
+ }
118
+ },
119
+ required: ["remoteType", "remotes"]
163
120
  };
121
+
122
+ //#endregion
123
+ exports.default = ContainerReferencePlugin_default;
164
124
  //# sourceMappingURL=ContainerReferencePlugin.js.map