| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							| 
									
										
										
										
											2017-08-09 08:50:10 +08:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2017-01-06 13:02:10 +08:00
										 |  |  | "use strict"; | 
					
						
							| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-06 13:02:10 +08:00
										 |  |  | const SingleEntryPlugin = require("./SingleEntryPlugin"); | 
					
						
							|  |  |  | const MultiEntryPlugin = require("./MultiEntryPlugin"); | 
					
						
							| 
									
										
										
										
											2017-01-09 15:31:49 +08:00
										 |  |  | const DynamicEntryPlugin = require("./DynamicEntryPlugin"); | 
					
						
							| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 19:05:22 +08:00
										 |  |  | /** @typedef {import("../declarations/WebpackOptions").EntryItem} EntryItem */ | 
					
						
							| 
									
										
										
										
											2018-05-04 00:57:02 +08:00
										 |  |  | /** @typedef {import("./Compiler")} Compiler */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @param {string} context context path | 
					
						
							| 
									
										
										
										
											2018-09-19 19:05:22 +08:00
										 |  |  |  * @param {EntryItem} item entry array or single path | 
					
						
							| 
									
										
										
										
											2018-05-04 00:57:02 +08:00
										 |  |  |  * @param {string} name entry key name | 
					
						
							|  |  |  |  * @returns {SingleEntryPlugin | MultiEntryPlugin} returns either a single or multi entry plugin | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-11-08 18:32:05 +08:00
										 |  |  | const itemToPlugin = (context, item, name) => { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 	if (Array.isArray(item)) { | 
					
						
							| 
									
										
										
										
											2017-08-08 08:43:45 +08:00
										 |  |  | 		return new MultiEntryPlugin(context, item, name); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-09 08:50:10 +08:00
										 |  |  | 	return new SingleEntryPlugin(context, item, name); | 
					
						
							| 
									
										
										
										
											2017-11-08 18:32:05 +08:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2017-08-08 08:43:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-06 13:02:10 +08:00
										 |  |  | module.exports = class EntryOptionPlugin { | 
					
						
							| 
									
										
										
										
											2018-05-04 00:57:02 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {Compiler} compiler the compiler instance one is tapping into | 
					
						
							|  |  |  | 	 * @returns {void} | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-01-06 13:02:10 +08:00
										 |  |  | 	apply(compiler) { | 
					
						
							| 
									
										
										
										
											2017-12-08 15:00:32 +08:00
										 |  |  | 		compiler.hooks.entryOption.tap("EntryOptionPlugin", (context, entry) => { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			if (typeof entry === "string" || Array.isArray(entry)) { | 
					
						
							| 
									
										
										
										
											2017-12-20 16:53:33 +08:00
										 |  |  | 				itemToPlugin(context, entry, "main").apply(compiler); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			} else if (typeof entry === "object") { | 
					
						
							|  |  |  | 				for (const name of Object.keys(entry)) { | 
					
						
							| 
									
										
										
										
											2018-01-22 20:52:43 +08:00
										 |  |  | 					itemToPlugin(context, entry[name], name).apply(compiler); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			} else if (typeof entry === "function") { | 
					
						
							| 
									
										
										
										
											2017-12-20 16:53:33 +08:00
										 |  |  | 				new DynamicEntryPlugin(context, entry).apply(compiler); | 
					
						
							| 
									
										
										
										
											2017-01-06 13:02:10 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-11 17:51:58 +08:00
										 |  |  | }; |