| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | const path = require("path"); | 
					
						
							| 
									
										
										
										
											2017-10-16 18:16:07 +08:00
										 |  |  | const util = require("util"); | 
					
						
							| 
									
										
										
										
											2018-03-22 19:05:58 +08:00
										 |  |  | const { OriginalSource, RawSource } = require("webpack-sources"); | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | const Module = require("./Module"); | 
					
						
							|  |  |  | const AsyncDependenciesBlock = require("./AsyncDependenciesBlock"); | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | const Template = require("./Template"); | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | class ContextModule extends Module { | 
					
						
							| 
									
										
										
										
											2017-10-16 20:49:51 +08:00
										 |  |  | 	// type ContextMode = "sync" | "eager" | "weak" | "async-weak" | "lazy" | "lazy-once"
 | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 	// type ContextOptions = { resource: string, recursive: boolean, regExp: RegExp, addon?: string, mode?: ContextMode, chunkName?: string, include?: RegExp, exclude?: RegExp, groupOptions?: Object }
 | 
					
						
							| 
									
										
										
										
											2017-10-16 20:49:51 +08:00
										 |  |  | 	// resolveDependencies: (fs: FS, options: ContextOptions, (err: Error?, dependencies: Dependency[]) => void) => void
 | 
					
						
							|  |  |  | 	// options: ContextOptions
 | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 	constructor(resolveDependencies, options) { | 
					
						
							| 
									
										
										
										
											2018-01-31 04:40:44 +08:00
										 |  |  | 		let resource; | 
					
						
							|  |  |  | 		let resourceQuery; | 
					
						
							| 
									
										
										
										
											2017-11-16 14:20:50 +08:00
										 |  |  | 		const queryIdx = options.resource.indexOf("?"); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (queryIdx >= 0) { | 
					
						
							| 
									
										
										
										
											2017-11-16 14:20:50 +08:00
										 |  |  | 			resource = options.resource.substr(0, queryIdx); | 
					
						
							|  |  |  | 			resourceQuery = options.resource.substr(queryIdx); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			resource = options.resource; | 
					
						
							|  |  |  | 			resourceQuery = ""; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-31 04:40:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		super("javascript/dynamic", resource); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Info from Factory
 | 
					
						
							|  |  |  | 		this.resolveDependencies = resolveDependencies; | 
					
						
							| 
									
										
										
										
											2017-11-16 14:20:50 +08:00
										 |  |  | 		this.options = Object.assign({}, options, { | 
					
						
							|  |  |  | 			resource: resource, | 
					
						
							|  |  |  | 			resourceQuery: resourceQuery | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (options.resolveOptions !== undefined) { | 
					
						
							| 
									
										
										
										
											2017-11-17 21:26:23 +08:00
										 |  |  | 			this.resolveOptions = options.resolveOptions; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-11-06 20:02:35 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Info from Build
 | 
					
						
							| 
									
										
										
										
											2017-12-06 19:09:17 +08:00
										 |  |  | 		this._contextDependencies = new Set([this.context]); | 
					
						
							| 
									
										
										
										
											2017-11-06 20:02:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (typeof options.mode !== "string") { | 
					
						
							| 
									
										
										
										
											2017-10-16 20:49:51 +08:00
										 |  |  | 			throw new Error("options.mode is a required option"); | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-13 08:17:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 02:02:30 +08:00
										 |  |  | 		this._identifier = this._createIdentifier(); | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 22:19:15 +08:00
										 |  |  | 	updateCacheModule(module) { | 
					
						
							|  |  |  | 		this.resolveDependencies = module.resolveDependencies; | 
					
						
							|  |  |  | 		this.options = module.options; | 
					
						
							|  |  |  | 		this.resolveOptions = module.resolveOptions; | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 17:26:47 +08:00
										 |  |  | 	prettyRegExp(regexString) { | 
					
						
							|  |  |  | 		// remove the "/" at the front and the beginning
 | 
					
						
							|  |  |  | 		// "/foo/" -> "foo"
 | 
					
						
							|  |  |  | 		return regexString.substring(1, regexString.length - 1); | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 17:15:29 +08:00
										 |  |  | 	contextify(context, request) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		return request | 
					
						
							|  |  |  | 			.split("!") | 
					
						
							|  |  |  | 			.map(subrequest => { | 
					
						
							|  |  |  | 				let rp = path.relative(context, subrequest); | 
					
						
							|  |  |  | 				if (path.sep === "\\") rp = rp.replace(/\\/g, "/"); | 
					
						
							|  |  |  | 				if (rp.indexOf("../") !== 0) rp = "./" + rp; | 
					
						
							|  |  |  | 				return rp; | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 			.join("!"); | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 02:02:30 +08:00
										 |  |  | 	_createIdentifier() { | 
					
						
							| 
									
										
										
										
											2017-02-18 17:29:21 +08:00
										 |  |  | 		let identifier = this.context; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (this.options.resourceQuery) { | 
					
						
							| 
									
										
										
										
											2017-12-01 19:47:14 +08:00
										 |  |  | 			identifier += ` ${this.options.resourceQuery}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.mode) { | 
					
						
							|  |  |  | 			identifier += ` ${this.options.mode}`; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (!this.options.recursive) { | 
					
						
							|  |  |  | 			identifier += " nonrecursive"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.addon) { | 
					
						
							|  |  |  | 			identifier += ` ${this.options.addon}`; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.regExp) { | 
					
						
							|  |  |  | 			identifier += ` ${this.options.regExp}`; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.include) { | 
					
						
							|  |  |  | 			identifier += ` include: ${this.options.include}`; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.exclude) { | 
					
						
							|  |  |  | 			identifier += ` exclude: ${this.options.exclude}`; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 		if (this.options.groupOptions) { | 
					
						
							|  |  |  | 			identifier += ` groupOptions: ${JSON.stringify( | 
					
						
							|  |  |  | 				this.options.groupOptions | 
					
						
							|  |  |  | 			)}`;
 | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (this.options.namespaceObject === "strict") { | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 			identifier += " strict namespace object"; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} else if (this.options.namespaceObject) { | 
					
						
							|  |  |  | 			identifier += " namespace object"; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-02-18 17:29:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return identifier; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 02:02:30 +08:00
										 |  |  | 	identifier() { | 
					
						
							|  |  |  | 		return this._identifier; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 17:29:21 +08:00
										 |  |  | 	readableIdentifier(requestShortener) { | 
					
						
							|  |  |  | 		let identifier = requestShortener.shorten(this.context); | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (this.options.resourceQuery) { | 
					
						
							| 
									
										
										
										
											2017-12-01 19:47:14 +08:00
										 |  |  | 			identifier += ` ${this.options.resourceQuery}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.mode) { | 
					
						
							|  |  |  | 			identifier += ` ${this.options.mode}`; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (!this.options.recursive) { | 
					
						
							|  |  |  | 			identifier += " nonrecursive"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.addon) { | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 			identifier += ` ${requestShortener.shorten(this.options.addon)}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.regExp) { | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 			identifier += ` ${this.prettyRegExp(this.options.regExp + "")}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.include) { | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 			identifier += ` include: ${this.prettyRegExp(this.options.include + "")}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.exclude) { | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 			identifier += ` exclude: ${this.prettyRegExp(this.options.exclude + "")}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 		if (this.options.groupOptions) { | 
					
						
							|  |  |  | 			const groupOptions = this.options.groupOptions; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 			for (const key of Object.keys(groupOptions)) { | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 				identifier += ` ${key}: ${groupOptions[key]}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (this.options.namespaceObject === "strict") { | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 			identifier += " strict namespace object"; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} else if (this.options.namespaceObject) { | 
					
						
							|  |  |  | 			identifier += " namespace object"; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-02-18 17:29:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return identifier; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	libIdent(options) { | 
					
						
							| 
									
										
										
										
											2017-02-18 17:29:21 +08:00
										 |  |  | 		let identifier = this.contextify(options.context, this.context); | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (this.options.mode) { | 
					
						
							|  |  |  | 			identifier += ` ${this.options.mode}`; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.recursive) { | 
					
						
							|  |  |  | 			identifier += " recursive"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.addon) { | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 			identifier += ` ${this.contextify(options.context, this.options.addon)}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.regExp) { | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 			identifier += ` ${this.prettyRegExp(this.options.regExp + "")}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.include) { | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 			identifier += ` include: ${this.prettyRegExp(this.options.include + "")}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (this.options.exclude) { | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 			identifier += ` exclude: ${this.prettyRegExp(this.options.exclude + "")}`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-02-18 17:29:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return identifier; | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-14 19:03:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	needRebuild(fileTimestamps, contextTimestamps) { | 
					
						
							| 
									
										
										
										
											2018-01-23 15:30:22 +08:00
										 |  |  | 		const ts = contextTimestamps.get(this.context); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (!ts) { | 
					
						
							| 
									
										
										
										
											2017-02-18 18:09:18 +08:00
										 |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-06 19:09:17 +08:00
										 |  |  | 		return ts >= this.buildInfo.builtTime; | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-14 19:03:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	build(options, compilation, resolver, fs, callback) { | 
					
						
							|  |  |  | 		this.built = true; | 
					
						
							| 
									
										
										
										
											2017-12-06 19:09:17 +08:00
										 |  |  | 		this.buildMeta = {}; | 
					
						
							|  |  |  | 		this.buildInfo = { | 
					
						
							|  |  |  | 			builtTime: Date.now(), | 
					
						
							|  |  |  | 			contextDependencies: this._contextDependencies | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 		this.resolveDependencies(fs, this.options, (err, dependencies) => { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			if (err) return callback(err); | 
					
						
							| 
									
										
										
										
											2013-02-01 01:00:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 			// abort if something failed
 | 
					
						
							|  |  |  | 			// this will create an empty context
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			if (!dependencies) { | 
					
						
							| 
									
										
										
										
											2017-02-18 18:09:18 +08:00
										 |  |  | 				callback(); | 
					
						
							|  |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2016-06-23 00:24:10 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-02-18 18:09:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 			// enhance dependencies with meta info
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			for (const dep of dependencies) { | 
					
						
							| 
									
										
										
										
											2017-02-18 18:09:18 +08:00
										 |  |  | 				dep.loc = dep.userRequest; | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 				dep.request = this.options.addon + dep.request; | 
					
						
							| 
									
										
										
										
											2018-01-22 20:52:43 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-02-18 18:09:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			if (this.options.mode === "sync" || this.options.mode === "eager") { | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 				// if we have an sync or eager context
 | 
					
						
							|  |  |  | 				// just add all dependencies and continue
 | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 				this.dependencies = dependencies; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			} else if (this.options.mode === "lazy-once") { | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 				// for the lazy-once mode create a new async dependency block
 | 
					
						
							|  |  |  | 				// and add that block to this context
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				if (dependencies.length > 0) { | 
					
						
							|  |  |  | 					const block = new AsyncDependenciesBlock( | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 						Object.assign({}, this.options.groupOptions, { | 
					
						
							|  |  |  | 							name: this.options.chunkName | 
					
						
							|  |  |  | 						}), | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 						this | 
					
						
							|  |  |  | 					); | 
					
						
							|  |  |  | 					for (const dep of dependencies) { | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 						block.addDependency(dep); | 
					
						
							| 
									
										
										
										
											2018-01-22 20:52:43 +08:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 					this.addBlock(block); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			} else if ( | 
					
						
							|  |  |  | 				this.options.mode === "weak" || | 
					
						
							|  |  |  | 				this.options.mode === "async-weak" | 
					
						
							|  |  |  | 			) { | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 				// we mark all dependencies as weak
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				for (const dep of dependencies) { | 
					
						
							| 
									
										
										
										
											2018-01-22 20:52:43 +08:00
										 |  |  | 					dep.weak = true; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 				this.dependencies = dependencies; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			} else if (this.options.mode === "lazy") { | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 				// if we are lazy create a new async dependency block per dependency
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 				// and add all blocks to this context
 | 
					
						
							| 
									
										
										
										
											2018-01-22 20:52:43 +08:00
										 |  |  | 				let index = 0; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				for (const dep of dependencies) { | 
					
						
							| 
									
										
										
										
											2017-10-14 05:31:15 +08:00
										 |  |  | 					let chunkName = this.options.chunkName; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 					if (chunkName) { | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 						if (!/\[(index|request)\]/.test(chunkName)) { | 
					
						
							|  |  |  | 							chunkName += "[index]"; | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2018-01-22 20:52:43 +08:00
										 |  |  | 						chunkName = chunkName.replace(/\[index\]/g, index++); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 						chunkName = chunkName.replace( | 
					
						
							|  |  |  | 							/\[request\]/g, | 
					
						
							|  |  |  | 							Template.toPath(dep.userRequest) | 
					
						
							|  |  |  | 						); | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 					const block = new AsyncDependenciesBlock( | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 						Object.assign({}, this.options.groupOptions, { | 
					
						
							|  |  |  | 							name: chunkName | 
					
						
							|  |  |  | 						}), | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 						dep.module, | 
					
						
							|  |  |  | 						dep.loc, | 
					
						
							|  |  |  | 						dep.userRequest | 
					
						
							|  |  |  | 					); | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 					block.addDependency(dep); | 
					
						
							|  |  |  | 					this.addBlock(block); | 
					
						
							| 
									
										
										
										
											2018-01-22 20:52:43 +08:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-10-16 20:49:51 +08:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				callback( | 
					
						
							|  |  |  | 					new Error(`Unsupported mode "${this.options.mode}" in context`) | 
					
						
							|  |  |  | 				); | 
					
						
							| 
									
										
										
										
											2017-10-16 20:49:51 +08:00
										 |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 			callback(); | 
					
						
							| 
									
										
										
										
											2015-07-01 06:19:52 +08:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2014-07-26 20:48:42 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 	getUserRequestMap(dependencies) { | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 		// if we filter first we get a new array
 | 
					
						
							|  |  |  | 		// therefor we dont need to create a clone of dependencies explicitly
 | 
					
						
							|  |  |  | 		// therefore the order of this is !important!
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 		return dependencies | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 			.filter(dependency => dependency.module) | 
					
						
							|  |  |  | 			.sort((a, b) => { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				if (a.userRequest === b.userRequest) { | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 					return 0; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 				return a.userRequest < b.userRequest ? -1 : 1; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			}) | 
					
						
							|  |  |  | 			.reduce((map, dep) => { | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 				map[dep.userRequest] = dep.module.id; | 
					
						
							|  |  |  | 				return map; | 
					
						
							| 
									
										
										
										
											2017-02-23 18:52:11 +08:00
										 |  |  | 			}, Object.create(null)); | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 	getFakeMap(dependencies) { | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (!this.options.namespaceObject) { | 
					
						
							|  |  |  | 			return 9; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		// if we filter first we get a new array
 | 
					
						
							|  |  |  | 		// therefor we dont need to create a clone of dependencies explicitly
 | 
					
						
							|  |  |  | 		// therefore the order of this is !important!
 | 
					
						
							|  |  |  | 		let hasNonHarmony = false; | 
					
						
							| 
									
										
										
										
											2017-12-23 01:23:20 +08:00
										 |  |  | 		let hasNamespace = false; | 
					
						
							|  |  |  | 		let hasNamed = false; | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		const fakeMap = dependencies | 
					
						
							|  |  |  | 			.filter(dependency => dependency.module) | 
					
						
							|  |  |  | 			.sort((a, b) => { | 
					
						
							|  |  |  | 				return b.module.id - a.module.id; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			}) | 
					
						
							|  |  |  | 			.reduce((map, dep) => { | 
					
						
							|  |  |  | 				const exportsType = | 
					
						
							|  |  |  | 					dep.module.buildMeta && dep.module.buildMeta.exportsType; | 
					
						
							| 
									
										
										
										
											2018-05-03 00:09:24 +08:00
										 |  |  | 				const id = dep.module.id; | 
					
						
							|  |  |  | 				if (!exportsType) { | 
					
						
							|  |  |  | 					map[id] = this.options.namespaceObject === "strict" ? 1 : 7; | 
					
						
							|  |  |  | 					hasNonHarmony = true; | 
					
						
							|  |  |  | 				} else if (exportsType === "namespace") { | 
					
						
							|  |  |  | 					map[id] = 9; | 
					
						
							|  |  |  | 					hasNamespace = true; | 
					
						
							|  |  |  | 				} else if (exportsType === "named") { | 
					
						
							|  |  |  | 					map[id] = 3; | 
					
						
							|  |  |  | 					hasNamed = true; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 				return map; | 
					
						
							|  |  |  | 			}, Object.create(null)); | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (!hasNamespace && hasNonHarmony && !hasNamed) { | 
					
						
							| 
									
										
										
										
											2018-05-03 00:09:24 +08:00
										 |  |  | 			return this.options.namespaceObject === "strict" ? 1 : 7; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (hasNamespace && !hasNonHarmony && !hasNamed) { | 
					
						
							|  |  |  | 			return 9; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (!hasNamespace && !hasNonHarmony && hasNamed) { | 
					
						
							|  |  |  | 			return 3; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (!hasNamespace && !hasNonHarmony && !hasNamed) { | 
					
						
							|  |  |  | 			return 9; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		return fakeMap; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-23 01:23:33 +08:00
										 |  |  | 	getFakeMapInitStatement(fakeMap) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		return typeof fakeMap === "object" | 
					
						
							|  |  |  | 			? `var fakeMap = ${JSON.stringify(fakeMap, null, "\t")};` | 
					
						
							|  |  |  | 			: ""; | 
					
						
							| 
									
										
										
										
											2017-12-23 01:23:33 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-06 10:18:40 +08:00
										 |  |  | 	getReturn(type) { | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (type === 9) { | 
					
						
							|  |  |  | 			return "__webpack_require__(id)"; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-05-03 00:09:24 +08:00
										 |  |  | 		return `__webpack_require__.t(id, ${type})`; | 
					
						
							| 
									
										
										
										
											2018-01-06 10:18:40 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	getReturnModuleObjectSource(fakeMap, fakeMapDataExpression = "fakeMap[id]") { | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		if (typeof fakeMap === "number") { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			return `return ${this.getReturn(fakeMap)};`; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-05-03 00:09:24 +08:00
										 |  |  | 		return `return __webpack_require__.t(id, ${fakeMapDataExpression})`; | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 	getSyncSource(dependencies, id) { | 
					
						
							|  |  |  | 		const map = this.getUserRequestMap(dependencies); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		const fakeMap = this.getFakeMap(dependencies); | 
					
						
							| 
									
										
										
										
											2018-01-06 10:18:40 +08:00
										 |  |  | 		const returnModuleObject = this.getReturnModuleObjectSource(fakeMap); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 		return `var map = ${JSON.stringify(map, null, "\t")};
 | 
					
						
							| 
									
										
										
										
											2017-12-23 01:23:33 +08:00
										 |  |  | ${this.getFakeMapInitStatement(fakeMap)} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | function webpackContext(req) { | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 	var id = webpackContextResolve(req); | 
					
						
							|  |  |  | 	${returnModuleObject} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | function webpackContextResolve(req) { | 
					
						
							|  |  |  | 	var id = map[req]; | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 	if(!(id + 1)) { // check for number or string
 | 
					
						
							| 
									
										
										
										
											2018-05-15 14:16:39 +08:00
										 |  |  | 		var e = new Error("Cannot find module '" + req + "'"); | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 		e.code = 'MODULE_NOT_FOUND'; | 
					
						
							|  |  |  | 		throw e; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 	return id; | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | webpackContext.keys = function webpackContextKeys() { | 
					
						
							|  |  |  | 	return Object.keys(map); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | webpackContext.resolve = webpackContextResolve; | 
					
						
							|  |  |  | module.exports = webpackContext; | 
					
						
							|  |  |  | webpackContext.id = ${JSON.stringify(id)};`;
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | 	getWeakSyncSource(dependencies, id) { | 
					
						
							|  |  |  | 		const map = this.getUserRequestMap(dependencies); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		const fakeMap = this.getFakeMap(dependencies); | 
					
						
							| 
									
										
										
										
											2018-01-06 10:18:40 +08:00
										 |  |  | 		const returnModuleObject = this.getReturnModuleObjectSource(fakeMap); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | 		return `var map = ${JSON.stringify(map, null, "\t")};
 | 
					
						
							| 
									
										
										
										
											2017-12-23 01:23:33 +08:00
										 |  |  | ${this.getFakeMapInitStatement(fakeMap)} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | function webpackContext(req) { | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 	var id = webpackContextResolve(req); | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 	if(!__webpack_require__.m[id]) { | 
					
						
							|  |  |  | 		var e = new Error("Module '" + req + "' ('" + id + "') is not available (weak dependency)"); | 
					
						
							|  |  |  | 		e.code = 'MODULE_NOT_FOUND'; | 
					
						
							|  |  |  | 		throw e; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 	${returnModuleObject} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | function webpackContextResolve(req) { | 
					
						
							|  |  |  | 	var id = map[req]; | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 	if(!(id + 1)) { // check for number or string
 | 
					
						
							| 
									
										
										
										
											2018-05-15 14:16:39 +08:00
										 |  |  | 		var e = new Error("Cannot find module '" + req + "'"); | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 		e.code = 'MODULE_NOT_FOUND'; | 
					
						
							|  |  |  | 		throw e; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | 	return id; | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | webpackContext.keys = function webpackContextKeys() { | 
					
						
							|  |  |  | 	return Object.keys(map); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | webpackContext.resolve = webpackContextResolve; | 
					
						
							| 
									
										
										
										
											2017-07-26 21:13:39 +08:00
										 |  |  | webpackContext.id = ${JSON.stringify(id)}; | 
					
						
							|  |  |  | module.exports = webpackContext;`;
 | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 	getAsyncWeakSource(dependencies, id) { | 
					
						
							|  |  |  | 		const map = this.getUserRequestMap(dependencies); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		const fakeMap = this.getFakeMap(dependencies); | 
					
						
							| 
									
										
										
										
											2018-01-06 10:18:40 +08:00
										 |  |  | 		const returnModuleObject = this.getReturnModuleObjectSource(fakeMap); | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return `var map = ${JSON.stringify(map, null, "\t")};
 | 
					
						
							| 
									
										
										
										
											2017-12-23 01:23:33 +08:00
										 |  |  | ${this.getFakeMapInitStatement(fakeMap)} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | function webpackAsyncContext(req) { | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 	return webpackAsyncContextResolve(req).then(function(id) { | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 		if(!__webpack_require__.m[id]) { | 
					
						
							|  |  |  | 			var e = new Error("Module '" + req + "' ('" + id + "') is not available (weak dependency)"); | 
					
						
							|  |  |  | 			e.code = 'MODULE_NOT_FOUND'; | 
					
						
							|  |  |  | 			throw e; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		${returnModuleObject} | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | function webpackAsyncContextResolve(req) { | 
					
						
							|  |  |  | 	// Here Promise.resolve().then() is used instead of new Promise() to prevent
 | 
					
						
							| 
									
										
										
										
											2018-02-26 10:50:05 +08:00
										 |  |  | 	// uncaught exception popping up in devtools
 | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 	return Promise.resolve().then(function() { | 
					
						
							|  |  |  | 		var id = map[req]; | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 		if(!(id + 1)) { // check for number or string
 | 
					
						
							| 
									
										
										
										
											2018-05-15 14:16:39 +08:00
										 |  |  | 			var e = new Error("Cannot find module '" + req + "'"); | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 			e.code = 'MODULE_NOT_FOUND'; | 
					
						
							|  |  |  | 			throw e; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 		return id; | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | webpackAsyncContext.keys = function webpackAsyncContextKeys() { | 
					
						
							|  |  |  | 	return Object.keys(map); | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | webpackAsyncContext.resolve = webpackAsyncContextResolve; | 
					
						
							|  |  |  | webpackAsyncContext.id = ${JSON.stringify(id)}; | 
					
						
							|  |  |  | module.exports = webpackAsyncContext;`;
 | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 	getEagerSource(dependencies, id) { | 
					
						
							|  |  |  | 		const map = this.getUserRequestMap(dependencies); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		const fakeMap = this.getFakeMap(dependencies); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		const thenFunction = | 
					
						
							| 
									
										
										
										
											2018-05-03 00:09:24 +08:00
										 |  |  | 			fakeMap !== 9 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				? `function(id) {
 | 
					
						
							| 
									
										
										
										
											2018-05-03 00:09:24 +08:00
										 |  |  | 		${this.getReturnModuleObjectSource(fakeMap)} | 
					
						
							|  |  |  | 	}`
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				: "__webpack_require__"; | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 		return `var map = ${JSON.stringify(map, null, "\t")};
 | 
					
						
							| 
									
										
										
										
											2017-12-23 01:23:33 +08:00
										 |  |  | ${this.getFakeMapInitStatement(fakeMap)} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | function webpackAsyncContext(req) { | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 	return webpackAsyncContextResolve(req).then(${thenFunction}); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | function webpackAsyncContextResolve(req) { | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 	// Here Promise.resolve().then() is used instead of new Promise() to prevent
 | 
					
						
							| 
									
										
										
										
											2018-02-26 10:50:05 +08:00
										 |  |  | 	// uncaught exception popping up in devtools
 | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 	return Promise.resolve().then(function() { | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 		var id = map[req]; | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 		if(!(id + 1)) { // check for number or string
 | 
					
						
							| 
									
										
										
										
											2018-05-15 14:16:39 +08:00
										 |  |  | 			var e = new Error("Cannot find module '" + req + "'"); | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 			e.code = 'MODULE_NOT_FOUND'; | 
					
						
							|  |  |  | 			throw e; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 		return id; | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | webpackAsyncContext.keys = function webpackAsyncContextKeys() { | 
					
						
							|  |  |  | 	return Object.keys(map); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | webpackAsyncContext.resolve = webpackAsyncContextResolve; | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | webpackAsyncContext.id = ${JSON.stringify(id)}; | 
					
						
							|  |  |  | module.exports = webpackAsyncContext;`;
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 17:31:00 +08:00
										 |  |  | 	getLazyOnceSource(block, dependencies, id, runtimeTemplate) { | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 		const promise = runtimeTemplate.blockPromise({ | 
					
						
							|  |  |  | 			block, | 
					
						
							|  |  |  | 			message: "lazy-once context" | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 		const map = this.getUserRequestMap(dependencies); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		const fakeMap = this.getFakeMap(dependencies); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		const thenFunction = | 
					
						
							| 
									
										
										
										
											2018-05-03 00:09:24 +08:00
										 |  |  | 			fakeMap !== 9 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				? `function(id) {
 | 
					
						
							| 
									
										
										
										
											2017-12-23 01:23:20 +08:00
										 |  |  | 		${this.getReturnModuleObjectSource(fakeMap)}; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 	}`
 | 
					
						
							|  |  |  | 				: "__webpack_require__"; | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 		return `var map = ${JSON.stringify(map, null, "\t")};
 | 
					
						
							| 
									
										
										
										
											2017-12-23 01:23:33 +08:00
										 |  |  | ${this.getFakeMapInitStatement(fakeMap)} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | function webpackAsyncContext(req) { | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 	return webpackAsyncContextResolve(req).then(${thenFunction}); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | function webpackAsyncContextResolve(req) { | 
					
						
							|  |  |  | 	return ${promise}.then(function() { | 
					
						
							|  |  |  | 		var id = map[req]; | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 		if(!(id + 1)) { // check for number or string
 | 
					
						
							| 
									
										
										
										
											2018-05-15 14:16:39 +08:00
										 |  |  | 			var e = new Error("Cannot find module '" + req + "'"); | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 			e.code = 'MODULE_NOT_FOUND'; | 
					
						
							|  |  |  | 			throw e; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 		return id; | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | webpackAsyncContext.keys = function webpackAsyncContextKeys() { | 
					
						
							|  |  |  | 	return Object.keys(map); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | webpackAsyncContext.resolve = webpackAsyncContextResolve; | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | webpackAsyncContext.id = ${JSON.stringify(id)}; | 
					
						
							|  |  |  | module.exports = webpackAsyncContext;`;
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	getLazySource(blocks, id) { | 
					
						
							| 
									
										
										
										
											2017-02-18 20:01:29 +08:00
										 |  |  | 		let hasMultipleOrNoChunks = false; | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		const fakeMap = this.getFakeMap(blocks.map(b => b.dependencies[0])); | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 		const map = blocks | 
					
						
							|  |  |  | 			.filter(block => block.dependencies[0].module) | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			.map(block => ({ | 
					
						
							| 
									
										
										
										
											2017-02-23 18:52:11 +08:00
										 |  |  | 				dependency: block.dependencies[0], | 
					
						
							|  |  |  | 				block: block, | 
					
						
							|  |  |  | 				userRequest: block.dependencies[0].userRequest | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			})) | 
					
						
							|  |  |  | 			.sort((a, b) => { | 
					
						
							|  |  |  | 				if (a.userRequest === b.userRequest) return 0; | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 				return a.userRequest < b.userRequest ? -1 : 1; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			}) | 
					
						
							|  |  |  | 			.reduce((map, item) => { | 
					
						
							|  |  |  | 				const chunks = | 
					
						
							|  |  |  | 					(item.block.chunkGroup && item.block.chunkGroup.chunks) || []; | 
					
						
							|  |  |  | 				if (chunks.length !== 1) { | 
					
						
							| 
									
										
										
										
											2017-02-18 20:01:29 +08:00
										 |  |  | 					hasMultipleOrNoChunks = true; | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 				const arrayStart = [item.dependency.module.id]; | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 				if (typeof fakeMap === "object") { | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 					arrayStart.push(fakeMap[item.dependency.module.id]); | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				map[item.userRequest] = arrayStart.concat( | 
					
						
							|  |  |  | 					chunks.map(chunk => chunk.id) | 
					
						
							|  |  |  | 				); | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				return map; | 
					
						
							| 
									
										
										
										
											2017-02-23 18:52:11 +08:00
										 |  |  | 			}, Object.create(null)); | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		const chunksStartPosition = typeof fakeMap === "object" ? 2 : 1; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		const requestPrefix = hasMultipleOrNoChunks | 
					
						
							| 
									
										
										
										
											2018-03-26 22:56:10 +08:00
										 |  |  | 			? `Promise.all(ids.slice(${chunksStartPosition}).map(__webpack_require__.e))` | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			: `__webpack_require__.e(ids[${chunksStartPosition}])`; | 
					
						
							|  |  |  | 		const returnModuleObject = this.getReturnModuleObjectSource( | 
					
						
							|  |  |  | 			fakeMap, | 
					
						
							|  |  |  | 			"ids[1]" | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return `var map = ${JSON.stringify(map, null, "\t")};
 | 
					
						
							|  |  |  | function webpackAsyncContext(req) { | 
					
						
							|  |  |  | 	var ids = map[req]; | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 	if(!ids) { | 
					
						
							|  |  |  | 		return Promise.resolve().then(function() { | 
					
						
							| 
									
										
										
										
											2018-05-15 14:16:39 +08:00
										 |  |  | 			var e = new Error("Cannot find module '" + req + "'"); | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 			e.code = 'MODULE_NOT_FOUND'; | 
					
						
							|  |  |  | 			throw e; | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 	return ${requestPrefix}.then(function() { | 
					
						
							| 
									
										
										
										
											2018-05-03 00:09:24 +08:00
										 |  |  | 		var id = ids[0]; | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | 		${returnModuleObject} | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2017-12-04 19:07:43 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | webpackAsyncContext.keys = function webpackAsyncContextKeys() { | 
					
						
							|  |  |  | 	return Object.keys(map); | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | webpackAsyncContext.id = ${JSON.stringify(id)}; | 
					
						
							|  |  |  | module.exports = webpackAsyncContext;`;
 | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	getSourceForEmptyContext(id) { | 
					
						
							|  |  |  | 		return `function webpackEmptyContext(req) {
 | 
					
						
							| 
									
										
										
										
											2018-05-15 14:16:39 +08:00
										 |  |  | 	var e = new Error("Cannot find module '" + req + "'"); | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 	e.code = 'MODULE_NOT_FOUND'; | 
					
						
							|  |  |  | 	throw e; | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | webpackEmptyContext.keys = function() { return []; }; | 
					
						
							|  |  |  | webpackEmptyContext.resolve = webpackEmptyContext; | 
					
						
							|  |  |  | module.exports = webpackEmptyContext; | 
					
						
							|  |  |  | webpackEmptyContext.id = ${JSON.stringify(id)};`;
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 	getSourceForEmptyAsyncContext(id) { | 
					
						
							|  |  |  | 		return `function webpackEmptyAsyncContext(req) {
 | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 	// Here Promise.resolve().then() is used instead of new Promise() to prevent
 | 
					
						
							| 
									
										
										
										
											2018-02-26 10:50:05 +08:00
										 |  |  | 	// uncaught exception popping up in devtools
 | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 	return Promise.resolve().then(function() { | 
					
						
							| 
									
										
										
										
											2018-05-15 14:16:39 +08:00
										 |  |  | 		var e = new Error("Cannot find module '" + req + "'"); | 
					
						
							| 
									
										
										
										
											2017-12-19 22:50:09 +08:00
										 |  |  | 		e.code = 'MODULE_NOT_FOUND'; | 
					
						
							|  |  |  | 		throw e; | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | } | 
					
						
							|  |  |  | webpackEmptyAsyncContext.keys = function() { return []; }; | 
					
						
							|  |  |  | webpackEmptyAsyncContext.resolve = webpackEmptyAsyncContext; | 
					
						
							|  |  |  | module.exports = webpackEmptyAsyncContext; | 
					
						
							|  |  |  | webpackEmptyAsyncContext.id = ${JSON.stringify(id)};`;
 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 17:31:00 +08:00
										 |  |  | 	getSourceString(asyncMode, runtimeTemplate) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (asyncMode === "lazy") { | 
					
						
							|  |  |  | 			if (this.blocks && this.blocks.length > 0) { | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 				return this.getLazySource(this.blocks, this.id); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return this.getSourceForEmptyAsyncContext(this.id); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (asyncMode === "eager") { | 
					
						
							|  |  |  | 			if (this.dependencies && this.dependencies.length > 0) { | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 				return this.getEagerSource(this.dependencies, this.id); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return this.getSourceForEmptyAsyncContext(this.id); | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (asyncMode === "lazy-once") { | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 			const block = this.blocks[0]; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			if (block) { | 
					
						
							|  |  |  | 				return this.getLazyOnceSource( | 
					
						
							|  |  |  | 					block, | 
					
						
							|  |  |  | 					block.dependencies, | 
					
						
							|  |  |  | 					this.id, | 
					
						
							|  |  |  | 					runtimeTemplate | 
					
						
							|  |  |  | 				); | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			return this.getSourceForEmptyAsyncContext(this.id); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (asyncMode === "async-weak") { | 
					
						
							|  |  |  | 			if (this.dependencies && this.dependencies.length > 0) { | 
					
						
							| 
									
										
										
										
											2017-07-26 20:49:37 +08:00
										 |  |  | 				return this.getAsyncWeakSource(this.dependencies, this.id); | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			return this.getSourceForEmptyAsyncContext(this.id); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (asyncMode === "weak") { | 
					
						
							|  |  |  | 			if (this.dependencies && this.dependencies.length > 0) { | 
					
						
							| 
									
										
										
										
											2017-07-26 01:21:02 +08:00
										 |  |  | 				return this.getWeakSyncSource(this.dependencies, this.id); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (this.dependencies && this.dependencies.length > 0) { | 
					
						
							| 
									
										
										
										
											2017-05-05 00:37:25 +08:00
										 |  |  | 			return this.getSyncSource(this.dependencies, this.id); | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 		return this.getSourceForEmptyContext(this.id); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	getSource(sourceString) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (this.useSourceMap) { | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 			return new OriginalSource(sourceString, this.identifier()); | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 		return new RawSource(sourceString); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 17:31:00 +08:00
										 |  |  | 	source(dependencyTemplates, runtimeTemplate) { | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 		return this.getSource( | 
					
						
							| 
									
										
										
										
											2017-12-07 17:31:00 +08:00
										 |  |  | 			this.getSourceString(this.options.mode, runtimeTemplate) | 
					
						
							| 
									
										
										
										
											2017-02-18 19:41:39 +08:00
										 |  |  | 		); | 
					
						
							| 
									
										
										
										
											2013-10-14 19:59:44 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	size() { | 
					
						
							| 
									
										
										
										
											2017-02-18 18:13:39 +08:00
										 |  |  | 		// base penalty
 | 
					
						
							| 
									
										
										
										
											2017-02-28 19:07:27 +08:00
										 |  |  | 		const initialSize = 160; | 
					
						
							| 
									
										
										
										
											2017-02-18 18:13:39 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// if we dont have dependencies we stop here.
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		return this.dependencies.reduce( | 
					
						
							|  |  |  | 			(size, dependency) => size + 5 + dependency.userRequest.length, | 
					
						
							|  |  |  | 			initialSize | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 05:28:23 +08:00
										 |  |  | // TODO remove in webpack 5
 | 
					
						
							| 
									
										
										
										
											2017-10-16 18:16:07 +08:00
										 |  |  | Object.defineProperty(ContextModule.prototype, "recursive", { | 
					
						
							|  |  |  | 	configurable: false, | 
					
						
							|  |  |  | 	get: util.deprecate(function() { | 
					
						
							|  |  |  | 		return this.options.recursive; | 
					
						
							|  |  |  | 	}, "ContextModule.recursive has been moved to ContextModule.options.recursive"), | 
					
						
							|  |  |  | 	set: util.deprecate(function(value) { | 
					
						
							|  |  |  | 		this.options.recursive = value; | 
					
						
							|  |  |  | 	}, "ContextModule.recursive has been moved to ContextModule.options.recursive") | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 05:28:23 +08:00
										 |  |  | // TODO remove in webpack 5
 | 
					
						
							| 
									
										
										
										
											2017-10-16 18:16:07 +08:00
										 |  |  | Object.defineProperty(ContextModule.prototype, "regExp", { | 
					
						
							|  |  |  | 	configurable: false, | 
					
						
							|  |  |  | 	get: util.deprecate(function() { | 
					
						
							|  |  |  | 		return this.options.regExp; | 
					
						
							|  |  |  | 	}, "ContextModule.regExp has been moved to ContextModule.options.regExp"), | 
					
						
							|  |  |  | 	set: util.deprecate(function(value) { | 
					
						
							|  |  |  | 		this.options.regExp = value; | 
					
						
							|  |  |  | 	}, "ContextModule.regExp has been moved to ContextModule.options.regExp") | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 05:28:23 +08:00
										 |  |  | // TODO remove in webpack 5
 | 
					
						
							| 
									
										
										
										
											2017-10-16 18:16:07 +08:00
										 |  |  | Object.defineProperty(ContextModule.prototype, "addon", { | 
					
						
							|  |  |  | 	configurable: false, | 
					
						
							|  |  |  | 	get: util.deprecate(function() { | 
					
						
							|  |  |  | 		return this.options.addon; | 
					
						
							|  |  |  | 	}, "ContextModule.addon has been moved to ContextModule.options.addon"), | 
					
						
							|  |  |  | 	set: util.deprecate(function(value) { | 
					
						
							|  |  |  | 		this.options.addon = value; | 
					
						
							|  |  |  | 	}, "ContextModule.addon has been moved to ContextModule.options.addon") | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 05:28:23 +08:00
										 |  |  | // TODO remove in webpack 5
 | 
					
						
							| 
									
										
										
										
											2017-10-16 18:16:07 +08:00
										 |  |  | Object.defineProperty(ContextModule.prototype, "async", { | 
					
						
							|  |  |  | 	configurable: false, | 
					
						
							|  |  |  | 	get: util.deprecate(function() { | 
					
						
							| 
									
										
										
										
											2017-10-16 20:49:51 +08:00
										 |  |  | 		return this.options.mode; | 
					
						
							|  |  |  | 	}, "ContextModule.async has been moved to ContextModule.options.mode"), | 
					
						
							| 
									
										
										
										
											2017-10-16 18:16:07 +08:00
										 |  |  | 	set: util.deprecate(function(value) { | 
					
						
							| 
									
										
										
										
											2017-10-16 20:49:51 +08:00
										 |  |  | 		this.options.mode = value; | 
					
						
							|  |  |  | 	}, "ContextModule.async has been moved to ContextModule.options.mode") | 
					
						
							| 
									
										
										
										
											2017-10-16 18:16:07 +08:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 05:28:23 +08:00
										 |  |  | // TODO remove in webpack 5
 | 
					
						
							| 
									
										
										
										
											2017-10-16 18:16:07 +08:00
										 |  |  | Object.defineProperty(ContextModule.prototype, "chunkName", { | 
					
						
							|  |  |  | 	configurable: false, | 
					
						
							|  |  |  | 	get: util.deprecate(function() { | 
					
						
							|  |  |  | 		return this.options.chunkName; | 
					
						
							|  |  |  | 	}, "ContextModule.chunkName has been moved to ContextModule.options.chunkName"), | 
					
						
							|  |  |  | 	set: util.deprecate(function(value) { | 
					
						
							|  |  |  | 		this.options.chunkName = value; | 
					
						
							|  |  |  | 	}, "ContextModule.chunkName has been moved to ContextModule.options.chunkName") | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 17:12:09 +08:00
										 |  |  | module.exports = ContextModule; |