| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2017-01-04 12:18:43 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | const SingleEntryDependency = require("./dependencies/SingleEntryDependency"); | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-04 00:57:02 +08:00
										 |  |  | /** @typedef {import("./Compiler")} Compiler */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-04 12:18:43 +08:00
										 |  |  | class SingleEntryPlugin { | 
					
						
							| 
									
										
										
										
											2018-05-04 00:57:02 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * An entry plugin which will handle | 
					
						
							|  |  |  | 	 * creation of the SingleEntryDependency | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param {string} context context path | 
					
						
							|  |  |  | 	 * @param {string} entry entry path | 
					
						
							|  |  |  | 	 * @param {string} name entry key name | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-01-04 12:18:43 +08:00
										 |  |  | 	constructor(context, entry, name) { | 
					
						
							|  |  |  | 		this.context = context; | 
					
						
							|  |  |  | 		this.entry = entry; | 
					
						
							|  |  |  | 		this.name = name; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-04 00:57:02 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {Compiler} compiler the compiler instance | 
					
						
							|  |  |  | 	 * @returns {void} | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-01-04 12:18:43 +08:00
										 |  |  | 	apply(compiler) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		compiler.hooks.compilation.tap( | 
					
						
							|  |  |  | 			"SingleEntryPlugin", | 
					
						
							|  |  |  | 			(compilation, { normalModuleFactory }) => { | 
					
						
							|  |  |  | 				compilation.dependencyFactories.set( | 
					
						
							|  |  |  | 					SingleEntryDependency, | 
					
						
							|  |  |  | 					normalModuleFactory | 
					
						
							|  |  |  | 				); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2017-01-04 12:18:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		compiler.hooks.make.tapAsync( | 
					
						
							|  |  |  | 			"SingleEntryPlugin", | 
					
						
							|  |  |  | 			(compilation, callback) => { | 
					
						
							|  |  |  | 				const { entry, name, context } = this; | 
					
						
							| 
									
										
										
										
											2017-12-08 15:00:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				const dep = SingleEntryPlugin.createDependency(entry, name); | 
					
						
							|  |  |  | 				compilation.addEntry(context, dep, name, callback); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2017-01-04 12:18:43 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-09 15:31:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-10 23:18:45 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {string} entry entry request | 
					
						
							|  |  |  | 	 * @param {string} name entry name | 
					
						
							|  |  |  | 	 * @returns {SingleEntryDependency} the dependency | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-01-09 15:31:49 +08:00
										 |  |  | 	static createDependency(entry, name) { | 
					
						
							|  |  |  | 		const dep = new SingleEntryDependency(entry); | 
					
						
							| 
									
										
										
										
											2018-07-10 23:18:45 +08:00
										 |  |  | 		dep.loc = { name }; | 
					
						
							| 
									
										
										
										
											2017-01-09 15:31:49 +08:00
										 |  |  | 		return dep; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 17:51:58 +08:00
										 |  |  | module.exports = SingleEntryPlugin; |