webpack 5.106.2 → 5.107.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.
Files changed (235) hide show
  1. package/README.md +2 -2
  2. package/lib/APIPlugin.js +1 -1
  3. package/lib/BannerPlugin.js +3 -4
  4. package/lib/Cache.js +3 -6
  5. package/lib/Chunk.js +21 -25
  6. package/lib/ChunkGroup.js +57 -15
  7. package/lib/CompatibilityPlugin.js +8 -7
  8. package/lib/Compilation.js +67 -37
  9. package/lib/Compiler.js +4 -13
  10. package/lib/ContextModule.js +2 -2
  11. package/lib/DefinePlugin.js +2 -2
  12. package/lib/Dependency.js +22 -1
  13. package/lib/DependencyTemplate.js +2 -1
  14. package/lib/EnvironmentPlugin.js +1 -1
  15. package/lib/EvalSourceMapDevToolPlugin.js +8 -10
  16. package/lib/ExportsInfo.js +30 -34
  17. package/lib/ExternalModule.js +91 -26
  18. package/lib/ExternalModuleFactoryPlugin.js +7 -1
  19. package/lib/FileSystemInfo.js +187 -72
  20. package/lib/Generator.js +3 -3
  21. package/lib/HotModuleReplacementPlugin.js +26 -8
  22. package/lib/IgnorePlugin.js +2 -1
  23. package/lib/Module.js +20 -19
  24. package/lib/ModuleFactory.js +1 -1
  25. package/lib/ModuleNotFoundError.js +3 -84
  26. package/lib/ModuleSourceTypeConstants.js +51 -19
  27. package/lib/ModuleTypeConstants.js +12 -3
  28. package/lib/MultiCompiler.js +2 -2
  29. package/lib/NodeStuffPlugin.js +1 -1
  30. package/lib/NormalModule.js +119 -77
  31. package/lib/NormalModuleFactory.js +47 -27
  32. package/lib/Parser.js +1 -1
  33. package/lib/ProgressPlugin.js +129 -56
  34. package/lib/RuntimeGlobals.js +5 -5
  35. package/lib/RuntimeModule.js +9 -7
  36. package/lib/RuntimePlugin.js +12 -1
  37. package/lib/SourceMapDevToolPlugin.js +250 -49
  38. package/lib/Template.js +1 -1
  39. package/lib/TemplatedPathPlugin.js +22 -4
  40. package/lib/WarnCaseSensitiveModulesPlugin.js +70 -2
  41. package/lib/WarnDeprecatedOptionPlugin.js +1 -1
  42. package/lib/WarnNoModeSetPlugin.js +16 -1
  43. package/lib/Watching.js +2 -3
  44. package/lib/WebpackError.js +3 -77
  45. package/lib/WebpackIsIncludedPlugin.js +1 -1
  46. package/lib/WebpackOptionsApply.js +13 -1
  47. package/lib/asset/AssetBytesGenerator.js +12 -8
  48. package/lib/asset/AssetGenerator.js +36 -22
  49. package/lib/asset/AssetModulesPlugin.js +6 -8
  50. package/lib/asset/AssetSourceGenerator.js +12 -8
  51. package/lib/buildChunkGraph.js +4 -6
  52. package/lib/cache/PackFileCacheStrategy.js +4 -4
  53. package/lib/cli.js +3 -1
  54. package/lib/config/defaults.js +197 -10
  55. package/lib/config/normalization.js +3 -1
  56. package/lib/css/CssGenerator.js +320 -105
  57. package/lib/css/CssInjectStyleRuntimeModule.js +44 -42
  58. package/lib/css/CssLoadingRuntimeModule.js +22 -4
  59. package/lib/{CssModule.js → css/CssModule.js} +15 -15
  60. package/lib/css/CssModulesPlugin.js +168 -88
  61. package/lib/css/CssParser.js +566 -269
  62. package/lib/css/walkCssTokens.js +148 -2
  63. package/lib/dependencies/AMDRequireDependenciesBlockParserPlugin.js +1 -1
  64. package/lib/dependencies/CommonJsDependencyHelpers.js +63 -0
  65. package/lib/dependencies/CommonJsExportRequireDependency.js +54 -10
  66. package/lib/dependencies/CommonJsExportsParserPlugin.js +1 -1
  67. package/lib/dependencies/CommonJsFullRequireDependency.js +32 -9
  68. package/lib/dependencies/CommonJsImportsParserPlugin.js +112 -4
  69. package/lib/dependencies/CommonJsRequireDependency.js +67 -4
  70. package/lib/dependencies/ContextDependency.js +1 -1
  71. package/lib/dependencies/ContextDependencyHelpers.js +1 -1
  72. package/lib/dependencies/CreateRequireParserPlugin.js +1 -1
  73. package/lib/dependencies/CriticalDependencyWarning.js +1 -1
  74. package/lib/dependencies/CssIcssExportDependency.js +332 -67
  75. package/lib/dependencies/CssIcssImportDependency.js +49 -7
  76. package/lib/dependencies/CssIcssSymbolDependency.js +11 -3
  77. package/lib/dependencies/CssImportDependency.js +8 -0
  78. package/lib/dependencies/CssUrlDependency.js +28 -2
  79. package/lib/dependencies/HarmonyDetectionParserPlugin.js +22 -2
  80. package/lib/dependencies/HarmonyExportDependencyParserPlugin.js +8 -7
  81. package/lib/dependencies/HarmonyExportExpressionDependency.js +22 -14
  82. package/lib/dependencies/HarmonyExportImportedSpecifierDependency.js +110 -3
  83. package/lib/dependencies/HarmonyImportDependency.js +10 -2
  84. package/lib/dependencies/HarmonyImportDependencyParserPlugin.js +22 -1
  85. package/lib/dependencies/HarmonyImportSpecifierDependency.js +1 -1
  86. package/lib/{HarmonyLinkingError.js → dependencies/HarmonyLinkingError.js} +5 -3
  87. package/lib/dependencies/HtmlInlineScriptDependency.js +133 -0
  88. package/lib/dependencies/HtmlInlineStyleDependency.js +101 -0
  89. package/lib/dependencies/HtmlScriptSrcDependency.js +557 -0
  90. package/lib/dependencies/HtmlSourceDependency.js +128 -0
  91. package/lib/dependencies/ImportMetaContextDependencyParserPlugin.js +1 -1
  92. package/lib/dependencies/ImportParserPlugin.js +2 -2
  93. package/lib/dependencies/ImportPhase.js +1 -1
  94. package/lib/dependencies/RequireIncludeDependencyParserPlugin.js +1 -1
  95. package/lib/{RequireJsStuffPlugin.js → dependencies/RequireJsStuffPlugin.js} +7 -7
  96. package/lib/dependencies/SystemPlugin.js +1 -1
  97. package/lib/dependencies/WebAssemblyImportDependency.js +1 -1
  98. package/lib/dependencies/WorkerPlugin.js +2 -2
  99. package/lib/{DelegatedModule.js → dll/DelegatedModule.js} +31 -31
  100. package/lib/{DelegatedModuleFactoryPlugin.js → dll/DelegatedModuleFactoryPlugin.js} +4 -4
  101. package/lib/{DelegatedPlugin.js → dll/DelegatedPlugin.js} +2 -2
  102. package/lib/{DllEntryPlugin.js → dll/DllEntryPlugin.js} +4 -4
  103. package/lib/{DllModule.js → dll/DllModule.js} +24 -24
  104. package/lib/{DllModuleFactory.js → dll/DllModuleFactory.js} +4 -4
  105. package/lib/{DllPlugin.js → dll/DllPlugin.js} +6 -5
  106. package/lib/{DllReferencePlugin.js → dll/DllReferencePlugin.js} +14 -14
  107. package/lib/{LibManifestPlugin.js → dll/LibManifestPlugin.js} +9 -9
  108. package/lib/{AsyncDependencyToInitialChunkError.js → errors/AsyncDependencyToInitialChunkError.js} +2 -2
  109. package/lib/errors/BuildCycleError.js +1 -1
  110. package/lib/{ChunkRenderError.js → errors/ChunkRenderError.js} +1 -1
  111. package/lib/{CodeGenerationError.js → errors/CodeGenerationError.js} +1 -1
  112. package/lib/{CommentCompilationWarning.js → errors/CommentCompilationWarning.js} +3 -3
  113. package/lib/{ConcurrentCompilationError.js → errors/ConcurrentCompilationError.js} +4 -2
  114. package/lib/{EnvironmentNotSupportAsyncWarning.js → errors/EnvironmentNotSupportAsyncWarning.js} +4 -4
  115. package/lib/{HookWebpackError.js → errors/HookWebpackError.js} +5 -5
  116. package/lib/{IgnoreErrorModuleFactory.js → errors/IgnoreErrorModuleFactory.js} +4 -4
  117. package/lib/{InvalidDependenciesModuleWarning.js → errors/InvalidDependenciesModuleWarning.js} +3 -3
  118. package/lib/errors/JSONParseError.js +114 -0
  119. package/lib/{ModuleBuildError.js → errors/ModuleBuildError.js} +5 -5
  120. package/lib/{ModuleDependencyError.js → errors/ModuleDependencyError.js} +2 -2
  121. package/lib/{ModuleDependencyWarning.js → errors/ModuleDependencyWarning.js} +4 -4
  122. package/lib/{ModuleError.js → errors/ModuleError.js} +5 -5
  123. package/lib/{ModuleHashingError.js → errors/ModuleHashingError.js} +1 -1
  124. package/lib/errors/ModuleNotFoundError.js +91 -0
  125. package/lib/{ModuleParseError.js → errors/ModuleParseError.js} +8 -6
  126. package/lib/{ModuleRestoreError.js → errors/ModuleRestoreError.js} +1 -1
  127. package/lib/{ModuleStoreError.js → errors/ModuleStoreError.js} +1 -1
  128. package/lib/{ModuleWarning.js → errors/ModuleWarning.js} +5 -5
  129. package/lib/{NodeStuffInWebError.js → errors/NodeStuffInWebError.js} +4 -4
  130. package/lib/errors/NonErrorEmittedError.js +28 -0
  131. package/lib/{UnhandledSchemeError.js → errors/UnhandledSchemeError.js} +2 -2
  132. package/lib/{UnsupportedFeatureWarning.js → errors/UnsupportedFeatureWarning.js} +3 -3
  133. package/lib/errors/WebpackError.js +84 -0
  134. package/lib/html/HtmlGenerator.js +379 -0
  135. package/lib/html/HtmlModulesPlugin.js +429 -0
  136. package/lib/html/HtmlParser.js +1489 -0
  137. package/lib/html/walkHtmlTokens.js +3249 -0
  138. package/lib/ids/IdHelpers.js +2 -1
  139. package/lib/index.js +36 -15
  140. package/lib/javascript/JavascriptModulesPlugin.js +91 -10
  141. package/lib/javascript/JavascriptParser.js +197 -16
  142. package/lib/javascript/JavascriptParserHelpers.js +1 -1
  143. package/lib/json/JsonParser.js +7 -16
  144. package/lib/library/AbstractLibraryPlugin.js +1 -1
  145. package/lib/library/EnableLibraryPlugin.js +1 -1
  146. package/lib/{FalseIIFEUmdWarning.js → library/FalseIIFEUmdWarning.js} +1 -1
  147. package/lib/library/ModuleLibraryPlugin.js +74 -0
  148. package/lib/node/NodeEnvironmentPlugin.js +4 -2
  149. package/lib/node/nodeConsole.js +113 -64
  150. package/lib/optimize/ConcatenatedModule.js +51 -6
  151. package/lib/optimize/InnerGraph.js +1 -1
  152. package/lib/optimize/InnerGraphPlugin.js +11 -1
  153. package/lib/optimize/MinMaxSizeWarning.js +4 -4
  154. package/lib/optimize/ModuleConcatenationPlugin.js +15 -7
  155. package/lib/optimize/RealContentHashPlugin.js +89 -26
  156. package/lib/optimize/SideEffectsFlagPlugin.js +112 -5
  157. package/lib/optimize/SplitChunksPlugin.js +5 -5
  158. package/lib/performance/AssetsOverSizeLimitWarning.js +2 -2
  159. package/lib/performance/EntrypointsOverSizeLimitWarning.js +2 -2
  160. package/lib/performance/NoAsyncChunksWarning.js +5 -3
  161. package/lib/performance/SizeLimitsPlugin.js +1 -1
  162. package/lib/prefetch/ChunkPrefetchTriggerRuntimeModule.js +4 -1
  163. package/lib/rules/UseEffectRulePlugin.js +4 -3
  164. package/lib/runtime/AutoPublicPathRuntimeModule.js +3 -3
  165. package/lib/runtime/GetChunkFilenameRuntimeModule.js +5 -5
  166. package/lib/runtime/MakeDeferredNamespaceObjectRuntime.js +119 -13
  167. package/lib/runtime/SetAnonymousDefaultNameRuntimeModule.js +35 -0
  168. package/lib/schemes/DataUriPlugin.js +13 -1
  169. package/lib/schemes/VirtualUrlPlugin.js +1 -1
  170. package/lib/serialization/SerializerMiddleware.js +2 -2
  171. package/lib/sharing/ConsumeSharedPlugin.js +4 -10
  172. package/lib/sharing/ConsumeSharedRuntimeModule.js +8 -4
  173. package/lib/sharing/ProvideSharedModule.js +1 -1
  174. package/lib/sharing/ProvideSharedPlugin.js +5 -5
  175. package/lib/sharing/resolveMatchedConfigs.js +1 -1
  176. package/lib/stats/DefaultStatsFactoryPlugin.js +2 -2
  177. package/lib/stats/DefaultStatsPresetPlugin.js +1 -1
  178. package/lib/stats/DefaultStatsPrinterPlugin.js +1 -1
  179. package/lib/stats/StatsFactory.js +1 -1
  180. package/lib/typescript/TypeScriptPlugin.js +210 -0
  181. package/lib/url/URLParserPlugin.js +2 -2
  182. package/lib/util/AsyncQueue.js +2 -2
  183. package/lib/util/Hash.js +2 -2
  184. package/lib/util/LocConverter.js +53 -0
  185. package/lib/util/SortableSet.js +1 -1
  186. package/lib/util/cleverMerge.js +2 -2
  187. package/lib/util/comparators.js +3 -3
  188. package/lib/util/concatenate.js +3 -3
  189. package/lib/util/conventions.js +42 -1
  190. package/lib/util/createMappings.js +118 -0
  191. package/lib/{formatLocation.js → util/formatLocation.js} +2 -2
  192. package/lib/{SizeFormatHelpers.js → util/formatSize.js} +3 -1
  193. package/lib/util/fs.js +8 -8
  194. package/lib/util/hash/md4.js +1 -1
  195. package/lib/util/hash/xxhash64.js +1 -1
  196. package/lib/util/identifier.js +48 -0
  197. package/lib/util/internalSerializables.js +35 -19
  198. package/lib/util/magicComment.js +10 -7
  199. package/lib/util/parseJson.js +2 -73
  200. package/lib/util/source.js +21 -0
  201. package/lib/util/topologicalSort.js +69 -0
  202. package/lib/wasm-async/AsyncWebAssemblyModulesPlugin.js +3 -4
  203. package/lib/wasm-async/AsyncWebAssemblyParser.js +1 -1
  204. package/lib/wasm-sync/UnsupportedWebAssemblyFeatureError.js +5 -3
  205. package/lib/wasm-sync/WasmFinalizeExportsPlugin.js +1 -1
  206. package/lib/wasm-sync/WebAssemblyInInitialChunkError.js +5 -3
  207. package/lib/webpack.js +3 -1
  208. package/package.json +24 -22
  209. package/schemas/WebpackOptions.check.js +1 -1
  210. package/schemas/WebpackOptions.json +129 -12
  211. package/schemas/plugins/{DllPlugin.check.d.ts → HtmlGeneratorOptions.check.d.ts} +1 -1
  212. package/schemas/plugins/HtmlGeneratorOptions.check.js +6 -0
  213. package/schemas/plugins/HtmlGeneratorOptions.json +3 -0
  214. package/schemas/plugins/ProgressPlugin.check.js +1 -1
  215. package/schemas/plugins/ProgressPlugin.json +22 -0
  216. package/schemas/plugins/container/ContainerReferencePlugin.check.js +1 -1
  217. package/schemas/plugins/container/ContainerReferencePlugin.json +1 -0
  218. package/schemas/plugins/container/ExternalsType.check.js +1 -1
  219. package/schemas/plugins/container/ModuleFederationPlugin.check.js +1 -1
  220. package/schemas/plugins/container/ModuleFederationPlugin.json +1 -0
  221. package/schemas/plugins/{DllReferencePlugin.check.d.ts → css/CssAutoOrModuleParserOptions.check.d.ts} +1 -1
  222. package/schemas/plugins/css/CssAutoOrModuleParserOptions.check.js +6 -0
  223. package/schemas/plugins/css/CssAutoOrModuleParserOptions.json +3 -0
  224. package/schemas/plugins/dll/DllPlugin.check.d.ts +7 -0
  225. package/schemas/plugins/dll/DllReferencePlugin.check.d.ts +7 -0
  226. package/types.d.ts +1153 -233
  227. package/lib/CaseSensitiveModulesWarning.js +0 -80
  228. package/lib/GraphHelpers.js +0 -49
  229. package/lib/NoModeWarning.js +0 -23
  230. package/lib/css/CssMergeStyleSheetsRuntimeModule.js +0 -57
  231. /package/lib/{AbstractMethodError.js → errors/AbstractMethodError.js} +0 -0
  232. /package/schemas/plugins/{DllPlugin.check.js → dll/DllPlugin.check.js} +0 -0
  233. /package/schemas/plugins/{DllPlugin.json → dll/DllPlugin.json} +0 -0
  234. /package/schemas/plugins/{DllReferencePlugin.check.js → dll/DllReferencePlugin.check.js} +0 -0
  235. /package/schemas/plugins/{DllReferencePlugin.json → dll/DllReferencePlugin.json} +0 -0
@@ -0,0 +1,379 @@
1
+ /*
2
+ MIT License http://www.opensource.org/licenses/mit-license.php
3
+ */
4
+
5
+ "use strict";
6
+
7
+ const { RawSource, ReplaceSource } = require("webpack-sources");
8
+ const ConcatenationScope = require("../ConcatenationScope");
9
+ const Generator = require("../Generator");
10
+ const {
11
+ HTML_TYPE,
12
+ JAVASCRIPT_TYPE,
13
+ JAVASCRIPT_TYPES
14
+ } = require("../ModuleSourceTypeConstants");
15
+ const RuntimeGlobals = require("../RuntimeGlobals");
16
+ const CssUrlDependency = require("../dependencies/CssUrlDependency");
17
+
18
+ /** @typedef {import("webpack-sources").Source} Source */
19
+ /** @typedef {import("../../declarations/WebpackOptions").HtmlGeneratorOptions} HtmlGeneratorOptions */
20
+ /** @typedef {import("../Compilation").DependencyConstructor} DependencyConstructor */
21
+ /** @typedef {import("../CodeGenerationResults")} CodeGenerationResults */
22
+ /** @typedef {import("../Dependency")} Dependency */
23
+ /** @typedef {import("../DependencyTemplate").DependencyTemplateContext} DependencyTemplateContext */
24
+ /** @typedef {import("../Generator").GenerateContext} GenerateContext */
25
+ /** @typedef {import("../Generator").UpdateHashContext} UpdateHashContext */
26
+ /** @typedef {import("../Module").SourceType} SourceType */
27
+ /** @typedef {import("../Module").SourceTypes} SourceTypes */
28
+ /** @typedef {import("../Module").ConcatenationBailoutReasonContext} ConcatenationBailoutReasonContext */
29
+ /** @typedef {import("../ModuleGraph")} ModuleGraph */
30
+ /** @typedef {import("../NormalModule")} NormalModule */
31
+ /** @typedef {import("../util/Hash")} Hash */
32
+ /**
33
+ * @template T
34
+ * @typedef {import("../InitFragment")<T>} InitFragment
35
+ */
36
+
37
+ /**
38
+ * @type {ReadonlySet<"javascript" | "html">}
39
+ */
40
+ const JAVASCRIPT_AND_HTML_TYPES = new Set([JAVASCRIPT_TYPE, HTML_TYPE]);
41
+
42
+ class HtmlGenerator extends Generator {
43
+ /**
44
+ * Creates an instance of HtmlGenerator.
45
+ * @param {HtmlGeneratorOptions=} options generator options
46
+ * @param {ModuleGraph=} moduleGraph the module graph; used to detect when an HTML module is reached as a compilation entry so `extract` can default to `true` for it
47
+ */
48
+ constructor(options, moduleGraph) {
49
+ super();
50
+ this.options = options || {};
51
+ /** @type {ModuleGraph | undefined} */
52
+ this._moduleGraph = moduleGraph;
53
+ }
54
+
55
+ /**
56
+ * Returns the reason this module cannot be concatenated, when one exists.
57
+ * @param {NormalModule} module module for which the bailout reason should be determined
58
+ * @param {ConcatenationBailoutReasonContext} context context
59
+ * @returns {string | undefined} reason why this module can't be concatenated, undefined when it can be concatenated
60
+ */
61
+ getConcatenationBailoutReason(module, context) {
62
+ return undefined;
63
+ }
64
+
65
+ /**
66
+ * Whether this HTML module is reached as a compilation entry. Entry
67
+ * modules have at least one incoming connection without an
68
+ * `originModule` (the EntryDependency added by `compilation.addEntry`).
69
+ * @param {NormalModule} module module
70
+ * @returns {boolean} true when the module is an entry
71
+ */
72
+ _isEntryModule(module) {
73
+ if (!this._moduleGraph) return false;
74
+ for (const connection of this._moduleGraph.getIncomingConnections(module)) {
75
+ if (!connection.originModule) return true;
76
+ }
77
+ return false;
78
+ }
79
+
80
+ /**
81
+ * Whether to emit the extracted `.html` file for this module.
82
+ * `options.extract === true` always extracts; `false` never; when the
83
+ * option is left unspecified, extraction defaults to on for HTML modules
84
+ * used as compilation entries — that's the HTML-as-entry-point use case.
85
+ * @param {NormalModule} module module
86
+ * @returns {boolean} true when the `.html` file should be emitted
87
+ */
88
+ _shouldExtract(module) {
89
+ const { extract } = this.options;
90
+ if (extract === true) return true;
91
+ if (extract === false) return false;
92
+ return this._isEntryModule(module);
93
+ }
94
+
95
+ /**
96
+ * Returns the source types available for this module.
97
+ * @param {NormalModule} module fresh module
98
+ * @returns {SourceTypes} available types (do not mutate)
99
+ */
100
+ getTypes(module) {
101
+ if (this._shouldExtract(module)) {
102
+ return JAVASCRIPT_AND_HTML_TYPES;
103
+ }
104
+ return JAVASCRIPT_TYPES;
105
+ }
106
+
107
+ /**
108
+ * Returns the estimated size for the requested source type.
109
+ * @param {NormalModule} module the module
110
+ * @param {SourceType=} type source type
111
+ * @returns {number} estimate size of the module
112
+ */
113
+ getSize(module, type) {
114
+ const originalSource = module.originalSource();
115
+ if (!originalSource) return 0;
116
+ if (type === HTML_TYPE) return originalSource.size();
117
+ return originalSource.size() + 10;
118
+ }
119
+
120
+ /**
121
+ * Processes the provided module.
122
+ * @param {NormalModule} module the current module
123
+ * @param {Dependency} dependency the dependency to generate
124
+ * @param {InitFragment<GenerateContext>[]} initFragments mutable list of init fragments
125
+ * @param {ReplaceSource} source the current replace source which can be modified
126
+ * @param {GenerateContext} generateContext the render context
127
+ * @returns {void}
128
+ */
129
+ sourceDependency(module, dependency, initFragments, source, generateContext) {
130
+ const constructor =
131
+ /** @type {DependencyConstructor} */
132
+ (dependency.constructor);
133
+ const template = generateContext.dependencyTemplates.get(constructor);
134
+ if (!template) {
135
+ throw new Error(
136
+ `No template for dependency: ${dependency.constructor.name}`
137
+ );
138
+ }
139
+
140
+ /** @type {DependencyTemplateContext} */
141
+ /** @type {InitFragment<GenerateContext>[] | undefined} */
142
+ let chunkInitFragments;
143
+ /** @type {DependencyTemplateContext} */
144
+ const templateContext = {
145
+ runtimeTemplate: generateContext.runtimeTemplate,
146
+ dependencyTemplates: generateContext.dependencyTemplates,
147
+ moduleGraph: generateContext.moduleGraph,
148
+ chunkGraph: generateContext.chunkGraph,
149
+ module,
150
+ runtime: generateContext.runtime,
151
+ runtimeRequirements: generateContext.runtimeRequirements,
152
+ concatenationScope: generateContext.concatenationScope,
153
+ codeGenerationResults:
154
+ /** @type {CodeGenerationResults} */
155
+ (generateContext.codeGenerationResults),
156
+ initFragments,
157
+ get chunkInitFragments() {
158
+ if (!chunkInitFragments) {
159
+ const data =
160
+ /** @type {NonNullable<GenerateContext["getData"]>} */
161
+ (generateContext.getData)();
162
+ chunkInitFragments = data.get("chunkInitFragments");
163
+ if (!chunkInitFragments) {
164
+ chunkInitFragments = [];
165
+ data.set("chunkInitFragments", chunkInitFragments);
166
+ }
167
+ }
168
+
169
+ return chunkInitFragments;
170
+ }
171
+ };
172
+
173
+ template.apply(dependency, source, templateContext);
174
+ }
175
+
176
+ /**
177
+ * Processes the provided dependencies block.
178
+ * @param {NormalModule} module the module to generate
179
+ * @param {import("../DependenciesBlock")} block the dependencies block which will be processed
180
+ * @param {InitFragment<GenerateContext>[]} initFragments mutable list of init fragments
181
+ * @param {ReplaceSource} source the current replace source which can be modified
182
+ * @param {GenerateContext} generateContext the generateContext
183
+ * @returns {void}
184
+ */
185
+ sourceBlock(module, block, initFragments, source, generateContext) {
186
+ for (const dependency of block.dependencies) {
187
+ this.sourceDependency(
188
+ module,
189
+ dependency,
190
+ initFragments,
191
+ source,
192
+ generateContext
193
+ );
194
+ }
195
+
196
+ for (const childBlock of block.blocks) {
197
+ this.sourceBlock(
198
+ module,
199
+ childBlock,
200
+ initFragments,
201
+ source,
202
+ generateContext
203
+ );
204
+ }
205
+ }
206
+
207
+ /**
208
+ * Processes the provided module.
209
+ * @param {NormalModule} module the module to generate
210
+ * @param {InitFragment<GenerateContext>[]} initFragments mutable list of init fragments
211
+ * @param {ReplaceSource} source the current replace source which can be modified
212
+ * @param {GenerateContext} generateContext the generateContext
213
+ * @returns {void}
214
+ */
215
+ sourceModule(module, initFragments, source, generateContext) {
216
+ for (const dependency of module.dependencies) {
217
+ this.sourceDependency(
218
+ module,
219
+ dependency,
220
+ initFragments,
221
+ source,
222
+ generateContext
223
+ );
224
+ }
225
+
226
+ if (module.presentationalDependencies !== undefined) {
227
+ for (const dependency of module.presentationalDependencies) {
228
+ this.sourceDependency(
229
+ module,
230
+ dependency,
231
+ initFragments,
232
+ source,
233
+ generateContext
234
+ );
235
+ }
236
+ }
237
+
238
+ for (const childBlock of module.blocks) {
239
+ this.sourceBlock(
240
+ module,
241
+ childBlock,
242
+ initFragments,
243
+ source,
244
+ generateContext
245
+ );
246
+ }
247
+ }
248
+
249
+ /**
250
+ * Run all HTML dependency templates against the original module source and
251
+ * return the rewritten HTML. When `undoPath` is a string, `[webpack/auto]`
252
+ * placeholders left in by asset/url dependencies are resolved to that
253
+ * undo path (use `""` to make URLs root-relative). When `undoPath` is
254
+ * `undefined`, the placeholders are preserved so the caller (typically
255
+ * `HtmlModulesPlugin#renderManifest`, which only knows the final
256
+ * `.html` filename after code generation) can resolve them itself.
257
+ * @param {NormalModule} module the module to render
258
+ * @param {GenerateContext} generateContext the generate context
259
+ * @param {string=} undoPath value to substitute for `[webpack/auto]` placeholders
260
+ * @returns {string} the rewritten HTML
261
+ */
262
+ _renderHtml(module, generateContext, undoPath) {
263
+ const originalSource = /** @type {Source} */ (module.originalSource());
264
+ const source = new ReplaceSource(originalSource);
265
+ /** @type {InitFragment<GenerateContext>[]} */
266
+ const initFragments = [];
267
+
268
+ this.sourceModule(module, initFragments, source, generateContext);
269
+
270
+ if (undoPath === undefined) {
271
+ return /** @type {string} */ (source.source());
272
+ }
273
+
274
+ const moduleSourceContent = source.source();
275
+ const generatedSource = new ReplaceSource(source);
276
+
277
+ const autoPlaceholder = CssUrlDependency.PUBLIC_PATH_AUTO;
278
+ const autoPlaceholderLen = autoPlaceholder.length;
279
+ for (
280
+ let idx = moduleSourceContent.indexOf(autoPlaceholder);
281
+ idx !== -1;
282
+ idx = moduleSourceContent.indexOf(
283
+ autoPlaceholder,
284
+ idx + autoPlaceholderLen
285
+ )
286
+ ) {
287
+ generatedSource.replace(idx, idx + autoPlaceholderLen - 1, undoPath);
288
+ }
289
+
290
+ // TODO handle `[fullhash]`
291
+
292
+ return /** @type {string} */ (generatedSource.source());
293
+ }
294
+
295
+ /**
296
+ * Generates generated code for this runtime module.
297
+ * @param {NormalModule} module module for which the code should be generated
298
+ * @param {GenerateContext} generateContext context for generate
299
+ * @returns {Source | null} generated code
300
+ */
301
+ generate(module, generateContext) {
302
+ const originalSource = module.originalSource();
303
+
304
+ if (!originalSource) {
305
+ return new RawSource("");
306
+ }
307
+
308
+ if (generateContext.type === HTML_TYPE) {
309
+ // Preserve `[webpack/auto]` placeholders here — the plugin's
310
+ // `renderManifest` hook knows the final `.html` filename and
311
+ // resolves them to an undo path relative to that location.
312
+ return new RawSource(
313
+ this._renderHtml(module, generateContext, undefined)
314
+ );
315
+ }
316
+
317
+ // JS export: the rewritten HTML is a string the consumer reads at
318
+ // runtime, so resolve placeholders to root-relative URLs.
319
+ const generated = this._renderHtml(module, generateContext, "");
320
+
321
+ /** @type {string} */
322
+ let sourceContent;
323
+ if (generateContext.concatenationScope) {
324
+ generateContext.concatenationScope.registerNamespaceExport(
325
+ ConcatenationScope.NAMESPACE_OBJECT_EXPORT
326
+ );
327
+ sourceContent = `${generateContext.runtimeTemplate.renderConst()} ${
328
+ ConcatenationScope.NAMESPACE_OBJECT_EXPORT
329
+ } = ${JSON.stringify(generated)};`;
330
+ } else {
331
+ generateContext.runtimeRequirements.add(RuntimeGlobals.module);
332
+ sourceContent = `${module.moduleArgument}.exports = ${JSON.stringify(
333
+ generated
334
+ )};`;
335
+ }
336
+
337
+ return new RawSource(sourceContent);
338
+ }
339
+
340
+ /**
341
+ * Generates fallback output for the provided error condition.
342
+ * @param {Error} error the error
343
+ * @param {NormalModule} module module for which the code should be generated
344
+ * @param {GenerateContext} generateContext context for generate
345
+ * @returns {Source | null} generated code
346
+ */
347
+ generateError(error, module, generateContext) {
348
+ if (generateContext.type === HTML_TYPE) {
349
+ // The error message can contain arbitrary text (file paths, user
350
+ // input, dep request strings). Strip `<`, `>`, and `--` runs so a
351
+ // crafted message can't close the comment with `-->` (or open a
352
+ // fake nested comment) and inject HTML into the extracted page.
353
+ const safe = String(error.message)
354
+ .replace(/[<>]/g, "")
355
+ .replace(/-{2,}/g, (m) => `${"-".repeat(m.length - 1)} `);
356
+ return new RawSource(`<!-- webpack error: ${safe} -->`);
357
+ }
358
+ return new RawSource(`throw new Error(${JSON.stringify(error.message)});`);
359
+ }
360
+
361
+ /**
362
+ * Updates the hash with the data contributed by this instance.
363
+ * @param {Hash} hash hash that will be modified
364
+ * @param {UpdateHashContext} updateHashContext context for updating hash
365
+ */
366
+ updateHash(hash, updateHashContext) {
367
+ hash.update("html");
368
+ // Hash the *effective* extraction state, not just the raw option,
369
+ // so the module hash flips when a module becomes (or stops being)
370
+ // a compilation entry under the `extract: undefined` default — the
371
+ // generator's source-type set changes with it, so any cached
372
+ // HTML-type codegen result must be invalidated.
373
+ if (this._shouldExtract(updateHashContext.module)) {
374
+ hash.update("extract");
375
+ }
376
+ }
377
+ }
378
+
379
+ module.exports = HtmlGenerator;