| 
									
										
										
										
											2013-03-26 23:54:41 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2018-07-30 23:08:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-13 04:38:38 +08:00
										 |  |  | "use strict"; | 
					
						
							| 
									
										
										
										
											2013-03-26 23:54:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | const util = require("util"); | 
					
						
							|  |  |  | const memorize = require("./util/memorize"); | 
					
						
							| 
									
										
										
										
											2013-03-26 23:54:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | /** @typedef {import("./Compilation")} Compilation */ | 
					
						
							| 
									
										
										
										
											2018-05-01 23:47:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | const getJavascriptModulesPlugin = memorize(() => | 
					
						
							| 
									
										
										
										
											2019-10-11 21:46:57 +08:00
										 |  |  | 	require("./javascript/JavascriptModulesPlugin") | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | ); | 
					
						
							| 
									
										
										
										
											2016-05-20 13:39:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | // TODO webpack 6 remove this class
 | 
					
						
							|  |  |  | class ChunkTemplate { | 
					
						
							| 
									
										
										
										
											2018-05-01 23:47:14 +08:00
										 |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | 	 * @param {TODO} outputOptions TODO | 
					
						
							|  |  |  | 	 * @param {Compilation} compilation the compilation | 
					
						
							| 
									
										
										
										
											2018-05-01 23:47:14 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | 	constructor(outputOptions, compilation) { | 
					
						
							|  |  |  | 		this._outputOptions = outputOptions || {}; | 
					
						
							|  |  |  | 		this.hooks = Object.freeze({ | 
					
						
							|  |  |  | 			renderManifest: { | 
					
						
							|  |  |  | 				tap: util.deprecate( | 
					
						
							|  |  |  | 					(options, fn) => { | 
					
						
							|  |  |  | 						compilation.hooks.renderManifest.tap( | 
					
						
							|  |  |  | 							options, | 
					
						
							|  |  |  | 							(entries, options) => { | 
					
						
							|  |  |  | 								if (options.chunk.hasRuntime()) return entries; | 
					
						
							|  |  |  | 								return fn(entries, options); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						); | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					"ChunkTemplate.hooks.renderManifest is deprecated (use Compilation.hooks.renderManifest instead)", | 
					
						
							|  |  |  | 					"DEP_WEBPACK_CHUNK_TEMPLATE_RENDER_MANIFEST" | 
					
						
							|  |  |  | 				) | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			modules: { | 
					
						
							|  |  |  | 				tap: util.deprecate( | 
					
						
							|  |  |  | 					(options, fn) => { | 
					
						
							|  |  |  | 						getJavascriptModulesPlugin() | 
					
						
							|  |  |  | 							.getCompilationHooks(compilation) | 
					
						
							|  |  |  | 							.renderChunk.tap(options, (source, renderContext) => | 
					
						
							| 
									
										
										
										
											2019-10-09 17:55:35 +08:00
										 |  |  | 								fn( | 
					
						
							|  |  |  | 									source, | 
					
						
							|  |  |  | 									compilation.moduleTemplates.javascript, | 
					
						
							|  |  |  | 									renderContext | 
					
						
							|  |  |  | 								) | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | 							); | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					"ChunkTemplate.hooks.modules is deprecated (use JavascriptModulesPlugin.getCompilationHooks().renderChunk instead)", | 
					
						
							|  |  |  | 					"DEP_WEBPACK_CHUNK_TEMPLATE_MODULES" | 
					
						
							|  |  |  | 				) | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			render: { | 
					
						
							|  |  |  | 				tap: util.deprecate( | 
					
						
							|  |  |  | 					(options, fn) => { | 
					
						
							|  |  |  | 						getJavascriptModulesPlugin() | 
					
						
							|  |  |  | 							.getCompilationHooks(compilation) | 
					
						
							|  |  |  | 							.renderChunk.tap(options, (source, renderContext) => | 
					
						
							| 
									
										
										
										
											2019-10-09 17:55:35 +08:00
										 |  |  | 								fn( | 
					
						
							|  |  |  | 									source, | 
					
						
							|  |  |  | 									compilation.moduleTemplates.javascript, | 
					
						
							|  |  |  | 									renderContext | 
					
						
							|  |  |  | 								) | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | 							); | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					"ChunkTemplate.hooks.render is deprecated (use JavascriptModulesPlugin.getCompilationHooks().renderChunk instead)", | 
					
						
							|  |  |  | 					"DEP_WEBPACK_CHUNK_TEMPLATE_RENDER" | 
					
						
							|  |  |  | 				) | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			renderWithEntry: { | 
					
						
							|  |  |  | 				tap: util.deprecate( | 
					
						
							|  |  |  | 					(options, fn) => { | 
					
						
							|  |  |  | 						getJavascriptModulesPlugin() | 
					
						
							|  |  |  | 							.getCompilationHooks(compilation) | 
					
						
							| 
									
										
										
										
											2019-10-09 17:55:56 +08:00
										 |  |  | 							.render.tap(options, (source, renderContext) => { | 
					
						
							|  |  |  | 								if ( | 
					
						
							|  |  |  | 									renderContext.chunkGraph.getNumberOfEntryModules( | 
					
						
							|  |  |  | 										renderContext.chunk | 
					
						
							|  |  |  | 									) === 0 || | 
					
						
							|  |  |  | 									renderContext.chunk.hasRuntime() | 
					
						
							|  |  |  | 								) { | 
					
						
							|  |  |  | 									return source; | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | 								return fn(source, renderContext.chunk); | 
					
						
							|  |  |  | 							}); | 
					
						
							|  |  |  | 					}, | 
					
						
							| 
									
										
										
										
											2019-10-09 17:55:56 +08:00
										 |  |  | 					"ChunkTemplate.hooks.renderWithEntry is deprecated (use JavascriptModulesPlugin.getCompilationHooks().render instead)", | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | 					"DEP_WEBPACK_CHUNK_TEMPLATE_RENDER_WITH_ENTRY" | 
					
						
							|  |  |  | 				) | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			hash: { | 
					
						
							|  |  |  | 				tap: util.deprecate( | 
					
						
							|  |  |  | 					(options, fn) => { | 
					
						
							|  |  |  | 						compilation.hooks.fullHash.tap(options, fn); | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					"ChunkTemplate.hooks.hash is deprecated (use Compilation.hooks.fullHash instead)", | 
					
						
							|  |  |  | 					"DEP_WEBPACK_CHUNK_TEMPLATE_HASH" | 
					
						
							|  |  |  | 				) | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			hashForChunk: { | 
					
						
							|  |  |  | 				tap: util.deprecate( | 
					
						
							|  |  |  | 					(options, fn) => { | 
					
						
							|  |  |  | 						getJavascriptModulesPlugin() | 
					
						
							|  |  |  | 							.getCompilationHooks(compilation) | 
					
						
							|  |  |  | 							.chunkHash.tap(options, (chunk, hash, context) => { | 
					
						
							|  |  |  | 								if (chunk.hasRuntime()) return; | 
					
						
							|  |  |  | 								fn(hash, chunk, context); | 
					
						
							|  |  |  | 							}); | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					"ChunkTemplate.hooks.hashForChunk is deprecated (use JavascriptModulesPlugin.getCompilationHooks().chunkHash instead)", | 
					
						
							|  |  |  | 					"DEP_WEBPACK_CHUNK_TEMPLATE_HASH_FOR_CHUNK" | 
					
						
							|  |  |  | 				) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2017-10-30 20:56:57 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-30 20:56:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | Object.defineProperty(ChunkTemplate.prototype, "outputOptions", { | 
					
						
							|  |  |  | 	get: util.deprecate( | 
					
						
							|  |  |  | 		/** | 
					
						
							|  |  |  | 		 * @this {ChunkTemplate} | 
					
						
							|  |  |  | 		 * @returns {TODO} output options | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2020-03-29 06:10:15 +08:00
										 |  |  | 		function () { | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | 			return this._outputOptions; | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		"ChunkTemplate.outputOptions is deprecated (use Compilation.outputOptions instead)", | 
					
						
							|  |  |  | 		"DEP_WEBPACK_CHUNK_TEMPLATE_OUTPUT_OPTIONS" | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2015-06-25 05:17:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-02 14:54:21 +08:00
										 |  |  | module.exports = ChunkTemplate; |