| 
									
										
										
										
											2014-06-03 05:40:50 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2017-02-20 21:28:20 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-30 00:44:55 +08:00
										 |  |  | var ConcatSource = require("webpack-sources").ConcatSource; | 
					
						
							| 
									
										
										
										
											2014-08-04 22:25:33 +08:00
										 |  |  | var Template = require("../Template"); | 
					
						
							| 
									
										
										
										
											2014-06-03 05:40:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-20 21:28:20 +08:00
										 |  |  | class WebWorkerChunkTemplatePlugin { | 
					
						
							| 
									
										
										
										
											2014-06-03 05:40:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-20 21:28:20 +08:00
										 |  |  | 	apply(chunkTemplate) { | 
					
						
							|  |  |  | 		chunkTemplate.plugin("render", function(modules, chunk) { | 
					
						
							|  |  |  | 			const chunkCallbackName = this.outputOptions.chunkCallbackName || Template.toIdentifier("webpackChunk" + (this.outputOptions.library || "")); | 
					
						
							|  |  |  | 			const source = new ConcatSource(); | 
					
						
							| 
									
										
										
										
											2017-02-21 06:14:02 +08:00
										 |  |  | 			source.add(`${chunkCallbackName}(${JSON.stringify(chunk.ids)},`); | 
					
						
							|  |  |  | 			source.add(modules); | 
					
						
							|  |  |  | 			source.add(")"); | 
					
						
							| 
									
										
										
										
											2017-02-20 21:28:20 +08:00
										 |  |  | 			return source; | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 		chunkTemplate.plugin("hash", function(hash) { | 
					
						
							|  |  |  | 			hash.update("webworker"); | 
					
						
							|  |  |  | 			hash.update("3"); | 
					
						
							| 
									
										
										
										
											2017-02-21 06:14:02 +08:00
										 |  |  | 			hash.update(`${this.outputOptions.chunkCallbackName}`); | 
					
						
							|  |  |  | 			hash.update(`${this.outputOptions.library}`); | 
					
						
							| 
									
										
										
										
											2017-02-20 21:28:20 +08:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | module.exports = WebWorkerChunkTemplatePlugin; |