webpack/lib/Compilation.js

1527 lines
42 KiB
JavaScript
Raw Normal View History

2013-01-31 01:49:25 +08:00
/*
2017-01-24 03:31:53 +08:00
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
2017-04-05 21:05:00 +08:00
const asyncLib = require("async");
2017-01-09 21:55:44 +08:00
const crypto = require("crypto");
const util = require("util");
const Tapable = require("tapable");
const EntryModuleNotFoundError = require("./EntryModuleNotFoundError");
const ModuleNotFoundError = require("./ModuleNotFoundError");
const ModuleDependencyWarning = require("./ModuleDependencyWarning");
const ModuleDependencyError = require("./ModuleDependencyError");
const Module = require("./Module");
const Chunk = require("./Chunk");
const Entrypoint = require("./Entrypoint");
const MainTemplate = require("./MainTemplate");
const ChunkTemplate = require("./ChunkTemplate");
const HotUpdateChunkTemplate = require("./HotUpdateChunkTemplate");
const ModuleTemplate = require("./ModuleTemplate");
const Dependency = require("./Dependency");
const ChunkRenderError = require("./ChunkRenderError");
const AsyncDependencyToInitialChunkWarning = require("./AsyncDependencyToInitialChunkWarning");
const CachedSource = require("webpack-sources").CachedSource;
const Stats = require("./Stats");
const Semaphore = require("./util/Semaphore");
const Queue = require("./util/Queue");
2017-11-06 23:41:26 +08:00
const SortableSet = require("./util/SortableSet");
2013-01-31 01:49:25 +08:00
2017-11-08 18:32:05 +08:00
const byId = (a, b) => {
if(a.id < b.id) return -1;
if(a.id > b.id) return 1;
return 0;
2017-11-08 18:32:05 +08:00
};
2017-11-08 18:32:05 +08:00
const iterationBlockVariable = (variables, fn) => {
for(let indexVariable = 0; indexVariable < variables.length; indexVariable++) {
let varDep = variables[indexVariable].dependencies;
for(let indexVDep = 0; indexVDep < varDep.length; indexVDep++) {
fn(varDep[indexVDep]);
}
}
2017-11-08 18:32:05 +08:00
};
2017-11-08 18:32:05 +08:00
const iterationOfArrayCallback = (arr, fn) => {
for(let index = 0; index < arr.length; index++) {
fn(arr[index]);
}
2017-11-08 18:32:05 +08:00
};
2017-11-06 23:41:26 +08:00
function addAllToSet(set, otherSet) {
for(const item of otherSet) {
set.add(item);
}
}
class Compilation extends Tapable {
constructor(compiler) {
super();
this.compiler = compiler;
this.resolverFactory = compiler.resolverFactory;
this.inputFileSystem = compiler.inputFileSystem;
const options = this.options = compiler.options;
this.outputOptions = options && options.output;
this.bail = options && options.bail;
this.profile = options && options.profile;
this.performance = options && options.performance;
this.mainTemplate = new MainTemplate(this.outputOptions);
this.chunkTemplate = new ChunkTemplate(this.outputOptions);
this.hotUpdateChunkTemplate = new HotUpdateChunkTemplate(this.outputOptions);
2017-10-30 20:56:57 +08:00
this.moduleTemplates = {
javascript: new ModuleTemplate(this.outputOptions),
webassembly: new ModuleTemplate(this.outputOptions)
};
this.semaphore = new Semaphore(options.parallelism || 100);
this.entries = [];
this.preparedChunks = [];
this.entrypoints = {};
this.chunks = [];
this.namedChunks = {};
this.modules = [];
this._modules = new Map();
this.cache = null;
this.records = null;
this.nextFreeModuleIndex = undefined;
this.nextFreeModuleIndex2 = undefined;
this.additionalChunkAssets = [];
this.assets = {};
this.errors = [];
this.warnings = [];
this.children = [];
this.dependencyFactories = new Map();
this.dependencyTemplates = new Map();
this.dependencyTemplates.set("hash", "");
this.childrenCounters = {};
this._buildingModules = new Map();
this._rebuildingModules = new Map();
}
getStats() {
return new Stats(this);
}
templatesPlugin(name, fn) {
this.mainTemplate.plugin(name, fn);
this.chunkTemplate.plugin(name, fn);
2014-06-04 03:03:21 +08:00
}
2013-05-08 19:28:54 +08:00
addModule(module, cacheGroup) {
const identifier = module.identifier();
if(this._modules.get(identifier)) {
return false;
2013-01-31 01:49:25 +08:00
}
const cacheName = (cacheGroup || "m") + identifier;
if(this.cache && this.cache[cacheName]) {
const cacheModule = this.cache[cacheName];
2013-02-01 01:00:22 +08:00
let rebuild = true;
if(this.fileTimestamps && this.contextTimestamps) {
rebuild = cacheModule.needRebuild(this.fileTimestamps, this.contextTimestamps);
2014-06-04 03:03:21 +08:00
}
if(!rebuild) {
cacheModule.disconnect();
this._modules.set(identifier, cacheModule);
this.modules.push(cacheModule);
cacheModule.errors.forEach(err => this.errors.push(err));
cacheModule.warnings.forEach(err => this.warnings.push(err));
return cacheModule;
}
module.unbuild();
2014-06-04 03:03:21 +08:00
}
this._modules.set(identifier, module);
if(this.cache) {
this.cache[cacheName] = module;
2014-06-04 03:03:21 +08:00
}
this.modules.push(module);
return true;
2013-01-31 01:49:25 +08:00
}
getModule(module) {
const identifier = module.identifier();
return this._modules.get(identifier);
2013-01-31 01:49:25 +08:00
}
findModule(identifier) {
return this._modules.get(identifier);
}
waitForBuildingFinished(module, callback) {
let callbackList = this._buildingModules.get(module);
if(callbackList) {
callbackList.push(() => callback());
} else {
process.nextTick(callback);
}
}
buildModule(module, optional, origin, dependencies, thisCallback) {
this.applyPlugins1("build-module", module);
let callbackList = this._buildingModules.get(module);
if(callbackList) {
callbackList.push(thisCallback);
return;
}
this._buildingModules.set(module, callbackList = [thisCallback]);
const callback = err => {
this._buildingModules.delete(module);
callbackList.forEach(cb => cb(err));
};
module.build(this.options, this, this.resolverFactory.get("normal", module.resolveOptions), this.inputFileSystem, (error) => {
const errors = module.errors;
for(let indexError = 0; indexError < errors.length; indexError++) {
const err = errors[indexError];
err.origin = origin;
err.dependencies = dependencies;
if(optional)
this.warnings.push(err);
else
this.errors.push(err);
}
const warnings = module.warnings;
for(let indexWarning = 0; indexWarning < warnings.length; indexWarning++) {
const war = warnings[indexWarning];
war.origin = origin;
war.dependencies = dependencies;
this.warnings.push(war);
}
module.dependencies.sort(Dependency.compare);
if(error) {
this.applyPlugins2("failed-module", module, error);
return callback(error);
2013-01-31 01:49:25 +08:00
}
this.applyPlugins1("succeed-module", module);
return callback();
});
}
processModuleDependencies(module, callback) {
const dependencies = new Map();
2017-11-08 18:32:05 +08:00
const addDependency = dep => {
const resourceIdent = dep.getResourceIdentifier();
if(resourceIdent) {
const factory = this.dependencyFactories.get(dep.constructor);
2017-11-19 16:06:40 +08:00
if(factory === undefined)
throw new Error(`No module factory available for dependency type: ${dep.constructor.name}`);
let innerMap = dependencies.get(factory);
if(innerMap === undefined)
dependencies.set(factory, innerMap = new Map());
let list = innerMap.get(resourceIdent);
if(list === undefined)
innerMap.set(resourceIdent, list = []);
list.push(dep);
2014-06-04 03:03:21 +08:00
}
2017-11-08 18:32:05 +08:00
};
2017-11-08 18:32:05 +08:00
const addDependenciesBlock = block => {
if(block.dependencies) {
iterationOfArrayCallback(block.dependencies, addDependency);
2014-06-04 03:03:21 +08:00
}
if(block.blocks) {
iterationOfArrayCallback(block.blocks, addDependenciesBlock);
2013-01-31 01:49:25 +08:00
}
if(block.variables) {
iterationBlockVariable(block.variables, addDependency);
2013-05-08 20:47:13 +08:00
}
2017-11-08 18:32:05 +08:00
};
2017-11-19 16:06:40 +08:00
try {
addDependenciesBlock(module);
} catch(e) {
callback(e);
}
const sortedDependencies = [];
for(const pair1 of dependencies) {
for(const pair2 of pair1[1]) {
sortedDependencies.push({
factory: pair1[0],
dependencies: pair2[1]
});
}
}
this.addModuleDependencies(module, sortedDependencies, this.bail, null, true, callback);
}
2013-05-08 19:28:54 +08:00
addModuleDependencies(module, dependencies, bail, cacheGroup, recursive, callback) {
let _this = this;
const start = _this.profile && Date.now();
2013-01-31 01:49:25 +08:00
asyncLib.forEach(dependencies, (item, callback) => {
const dependencies = item.dependencies;
2013-01-31 01:49:25 +08:00
2017-11-08 18:32:05 +08:00
const errorAndCallback = err => {
err.origin = module;
_this.errors.push(err);
if(bail) {
callback(err);
} else {
callback();
}
};
2017-11-08 18:32:05 +08:00
const warningAndCallback = err => {
err.origin = module;
_this.warnings.push(err);
callback();
};
const semaphore = _this.semaphore;
semaphore.acquire(() => {
if(_this === null) return semaphore.release();
const factory = item.factory;
factory.create({
contextInfo: {
issuer: module.nameForCondition && module.nameForCondition(),
compiler: _this.compiler.name
},
resolveOptions: module.resolveOptions,
context: module.context,
dependencies: dependencies
2017-11-08 18:32:05 +08:00
}, (err, dependentModule) => {
if(_this === null) return semaphore.release();
let afterFactory;
2017-11-08 18:32:05 +08:00
const isOptional = () => {
return dependencies.every(d => d.optional);
2017-11-08 18:32:05 +08:00
};
2017-11-08 18:32:05 +08:00
const errorOrWarningAndCallback = err => {
if(isOptional()) {
return warningAndCallback(err);
} else {
return errorAndCallback(err);
}
2017-11-08 18:32:05 +08:00
};
2017-11-08 18:32:05 +08:00
const iterationDependencies = depend => {
for(let index = 0; index < depend.length; index++) {
const dep = depend[index];
dep.module = dependentModule;
dependentModule.addReason(module, dep);
}
2017-11-08 18:32:05 +08:00
};
if(err) {
semaphore.release();
return errorOrWarningAndCallback(new ModuleNotFoundError(module, err, dependencies));
}
if(!dependentModule) {
semaphore.release();
return process.nextTick(callback);
}
if(_this.profile) {
if(!dependentModule.profile) {
dependentModule.profile = {};
}
afterFactory = Date.now();
dependentModule.profile.factory = afterFactory - start;
2014-06-04 03:03:21 +08:00
}
2013-05-08 20:47:13 +08:00
const newModule = _this.addModule(dependentModule, cacheGroup);
2013-01-31 01:49:25 +08:00
if(!newModule) { // from cache
dependentModule = _this.getModule(dependentModule);
2013-05-08 20:47:13 +08:00
iterationDependencies(dependencies);
2013-01-31 01:49:25 +08:00
if(_this.profile) {
if(!module.profile) {
module.profile = {};
}
const time = Date.now() - start;
if(!module.profile.dependencies || time > module.profile.dependencies) {
module.profile.dependencies = time;
}
}
semaphore.release();
_this.waitForBuildingFinished(dependentModule, callback);
return;
}
2015-02-05 06:21:22 +08:00
if(newModule instanceof Module) {
if(_this.profile) {
newModule.profile = dependentModule.profile;
}
2013-05-08 19:28:54 +08:00
newModule.issuer = module;
dependentModule = newModule;
iterationDependencies(dependencies);
2013-05-18 20:42:11 +08:00
if(_this.profile) {
const afterBuilding = Date.now();
module.profile.building = afterBuilding - afterFactory;
}
2013-01-31 01:49:25 +08:00
semaphore.release();
if(recursive) {
return process.nextTick(_this.processModuleDependencies.bind(_this, dependentModule, callback));
} else {
return process.nextTick(callback);
}
}
2013-05-08 20:47:13 +08:00
dependentModule.issuer = module;
2013-01-31 01:49:25 +08:00
iterationDependencies(dependencies);
2013-01-31 01:49:25 +08:00
_this.buildModule(dependentModule, isOptional(), module, dependencies, err => {
if(_this === null) return semaphore.release();
if(err) {
semaphore.release();
return errorOrWarningAndCallback(err);
}
2013-01-31 01:49:25 +08:00
if(_this.profile) {
const afterBuilding = Date.now();
dependentModule.profile.building = afterBuilding - afterFactory;
}
2015-02-05 06:21:22 +08:00
semaphore.release();
if(recursive) {
_this.processModuleDependencies(dependentModule, callback);
} else {
return callback();
}
});
2013-01-31 01:49:25 +08:00
});
});
2017-11-08 18:32:05 +08:00
}, err => {
// In V8, the Error objects keep a reference to the functions on the stack. These warnings &
// errors are created inside closures that keep a reference to the Compilation, so errors are
// leaking the Compilation object. Setting _this to null workarounds the following issue in V8.
// https://bugs.chromium.org/p/chromium/issues/detail?id=612191
_this = null;
2013-01-31 01:49:25 +08:00
if(err) {
return callback(err);
}
return process.nextTick(callback);
});
2014-06-04 03:03:21 +08:00
}
2013-01-31 01:49:25 +08:00
_addModuleChain(context, dependency, onModule, callback) {
const start = this.profile && Date.now();
const errorAndCallback = this.bail ? (err) => {
callback(err);
} : (err) => {
err.dependencies = [dependency];
this.errors.push(err);
callback();
2017-08-11 12:05:25 +08:00
};
if(typeof dependency !== "object" || dependency === null || !dependency.constructor) {
throw new Error("Parameter 'dependency' must be a Dependency");
2014-06-04 03:03:21 +08:00
}
2013-01-31 01:49:25 +08:00
const moduleFactory = this.dependencyFactories.get(dependency.constructor);
if(!moduleFactory) {
throw new Error(`No dependency factory available for this dependency type: ${dependency.constructor.name}`);
2013-05-13 19:34:00 +08:00
}
this.semaphore.acquire(() => {
moduleFactory.create({
contextInfo: {
issuer: "",
compiler: this.compiler.name
},
context: context,
dependencies: [dependency]
}, (err, module) => {
if(err) {
this.semaphore.release();
return errorAndCallback(new EntryModuleNotFoundError(err));
}
2013-05-08 19:28:54 +08:00
let afterFactory;
if(this.profile) {
if(!module.profile) {
module.profile = {};
}
afterFactory = Date.now();
module.profile.factory = afterFactory - start;
}
const result = this.addModule(module);
if(!result) {
module = this.getModule(module);
2013-05-13 19:34:00 +08:00
onModule(module);
dependency.module = module;
module.addReason(null, dependency);
if(this.profile) {
const afterBuilding = Date.now();
module.profile.building = afterBuilding - afterFactory;
}
this.semaphore.release();
this.waitForBuildingFinished(module, err => {
if(err) return callback(err);
callback(null, module);
});
return;
}
2017-11-08 18:32:05 +08:00
const moduleReady = () => {
this.semaphore.release();
this.processModuleDependencies(module, err => {
if(err) {
return callback(err);
}
return callback(null, module);
});
};
if(result instanceof Module) {
if(this.profile) {
result.profile = module.profile;
}
module = result;
onModule(module);
dependency.module = module;
module.addReason(null, dependency);
2017-11-08 18:32:05 +08:00
moduleReady();
return;
}
2013-01-31 01:49:25 +08:00
onModule(module);
dependency.module = module;
module.addReason(null, dependency);
2017-11-08 18:32:05 +08:00
this.buildModule(module, false, null, null, err => {
if(err) {
this.semaphore.release();
return errorAndCallback(err);
}
2013-01-31 01:49:25 +08:00
if(this.profile) {
const afterBuilding = Date.now();
module.profile.building = afterBuilding - afterFactory;
}
2017-11-08 18:32:05 +08:00
moduleReady();
});
});
});
}
addEntry(context, entry, name, callback) {
const slot = {
name: name,
module: null
};
this.preparedChunks.push(slot);
this._addModuleChain(context, entry, (module) => {
this.entries.push(module);
}, (err, module) => {
if(err) {
return callback(err);
}
2013-01-31 01:49:25 +08:00
if(module) {
slot.module = module;
} else {
const idx = this.preparedChunks.indexOf(slot);
this.preparedChunks.splice(idx, 1);
}
return callback(null, module);
});
}
2013-05-13 19:34:00 +08:00
prefetch(context, dependency, callback) {
this._addModuleChain(context, dependency, module => {
2013-05-08 19:28:54 +08:00
module.prefetched = true;
2013-01-31 01:49:25 +08:00
}, callback);
}
rebuildModule(module, thisCallback) {
let callbackList = this._rebuildingModules.get(module);
if(callbackList) {
callbackList.push(thisCallback);
return;
2014-06-04 03:03:21 +08:00
}
this._rebuildingModules.set(module, callbackList = [thisCallback]);
2013-05-13 19:34:00 +08:00
const callback = err => {
this._rebuildingModules.delete(module);
callbackList.forEach(cb => cb(err));
};
const oldDependencies = module.dependencies.slice();
const oldVariables = module.variables.slice();
const oldBlocks = module.blocks.slice();
this.buildModule(module, false, module, null, (err) => {
if(err) return callback(err);
2013-05-13 19:34:00 +08:00
this.processModuleDependencies(module, (err) => {
if(err) return callback(err);
this.removeReasonsOfDependencyBlock(module, {
dependencies: oldDependencies,
variables: oldVariables,
blocks: oldBlocks
});
callback();
});
2013-05-13 19:34:00 +08:00
});
}
2013-05-13 19:34:00 +08:00
finish() {
const modules = this.modules;
this.applyPlugins1("finish-modules", modules);
for(let index = 0; index < modules.length; index++) {
const module = modules[index];
this.reportDependencyErrorsAndWarnings(module, [module]);
}
}
2013-05-13 19:34:00 +08:00
unseal() {
this.applyPlugins0("unseal");
this.chunks.length = 0;
this.namedChunks = {};
this.additionalChunkAssets.length = 0;
this.assets = {};
this.modules.forEach(module => module.unseal());
}
seal(callback) {
2017-11-08 18:32:05 +08:00
this.applyPlugins0("seal");
2017-08-08 15:40:17 +08:00
2017-11-08 18:32:05 +08:00
while(this.applyPluginsBailResult1("optimize-dependencies-basic", this.modules) ||
this.applyPluginsBailResult1("optimize-dependencies", this.modules) ||
this.applyPluginsBailResult1("optimize-dependencies-advanced", this.modules)) { /* empty */ }
this.applyPlugins1("after-optimize-dependencies", this.modules);
2017-08-08 15:40:17 +08:00
2017-11-08 18:32:05 +08:00
this.nextFreeModuleIndex = 0;
this.nextFreeModuleIndex2 = 0;
this.preparedChunks.forEach(preparedChunk => {
const module = preparedChunk.module;
2017-11-08 18:32:05 +08:00
const chunk = this.addChunk(preparedChunk.name, module);
const entrypoint = this.entrypoints[chunk.name] = new Entrypoint(chunk.name);
entrypoint.unshiftChunk(chunk);
chunk.addModule(module);
module.addChunk(chunk);
chunk.entryModule = module;
2017-11-08 18:32:05 +08:00
this.assignIndex(module);
this.assignDepth(module);
});
2017-11-08 18:32:05 +08:00
this.processDependenciesBlocksForChunks(this.chunks.slice());
this.sortModules(this.modules);
this.applyPlugins0("optimize");
2017-11-08 18:32:05 +08:00
while(this.applyPluginsBailResult1("optimize-modules-basic", this.modules) ||
this.applyPluginsBailResult1("optimize-modules", this.modules) ||
this.applyPluginsBailResult1("optimize-modules-advanced", this.modules)) { /* empty */ }
this.applyPlugins1("after-optimize-modules", this.modules);
2017-11-08 18:32:05 +08:00
while(this.applyPluginsBailResult1("optimize-chunks-basic", this.chunks) ||
this.applyPluginsBailResult1("optimize-chunks", this.chunks) ||
this.applyPluginsBailResult1("optimize-chunks-advanced", this.chunks)) { /* empty */ }
this.applyPlugins1("after-optimize-chunks", this.chunks);
2017-11-08 18:32:05 +08:00
this.applyPluginsAsyncSeries("optimize-tree", this.chunks, this.modules, err => {
if(err) {
return callback(err);
}
2017-11-08 18:32:05 +08:00
this.applyPlugins2("after-optimize-tree", this.chunks, this.modules);
2017-11-08 18:32:05 +08:00
while(this.applyPluginsBailResult("optimize-chunk-modules-basic", this.chunks, this.modules) ||
this.applyPluginsBailResult("optimize-chunk-modules", this.chunks, this.modules) ||
this.applyPluginsBailResult("optimize-chunk-modules-advanced", this.chunks, this.modules)) { /* empty */ }
this.applyPlugins2("after-optimize-chunk-modules", this.chunks, this.modules);
2017-05-10 19:15:14 +08:00
2017-11-08 18:32:05 +08:00
const shouldRecord = this.applyPluginsBailResult("should-record") !== false;
2017-11-08 18:32:05 +08:00
this.applyPlugins2("revive-modules", this.modules, this.records);
this.applyPlugins1("optimize-module-order", this.modules);
this.applyPlugins1("advanced-optimize-module-order", this.modules);
this.applyPlugins1("before-module-ids", this.modules);
this.applyPlugins1("module-ids", this.modules);
this.applyModuleIds();
this.applyPlugins1("optimize-module-ids", this.modules);
this.applyPlugins1("after-optimize-module-ids", this.modules);
2017-11-08 18:32:05 +08:00
this.sortItemsWithModuleIds();
2017-11-08 18:32:05 +08:00
this.applyPlugins2("revive-chunks", this.chunks, this.records);
this.applyPlugins1("optimize-chunk-order", this.chunks);
this.applyPlugins1("before-chunk-ids", this.chunks);
this.applyChunkIds();
this.applyPlugins1("optimize-chunk-ids", this.chunks);
this.applyPlugins1("after-optimize-chunk-ids", this.chunks);
2017-11-08 18:32:05 +08:00
this.sortItemsWithChunkIds();
if(shouldRecord)
2017-11-08 18:32:05 +08:00
this.applyPlugins2("record-modules", this.modules, this.records);
if(shouldRecord)
2017-11-08 18:32:05 +08:00
this.applyPlugins2("record-chunks", this.chunks, this.records);
2017-11-08 18:32:05 +08:00
this.applyPlugins0("before-hash");
this.createHash();
this.applyPlugins0("after-hash");
if(shouldRecord)
2017-11-08 18:32:05 +08:00
this.applyPlugins1("record-hash", this.records);
2017-11-08 18:32:05 +08:00
this.applyPlugins0("before-module-assets");
this.createModuleAssets();
if(this.applyPluginsBailResult("should-generate-chunk-assets") !== false) {
this.applyPlugins0("before-chunk-assets");
this.createChunkAssets();
2014-06-04 03:03:21 +08:00
}
2017-11-08 18:32:05 +08:00
this.applyPlugins1("additional-chunk-assets", this.chunks);
this.summarizeDependencies();
if(shouldRecord)
2017-11-08 18:32:05 +08:00
this.applyPlugins2("record", this, this.records);
2017-11-08 18:32:05 +08:00
this.applyPluginsAsync("additional-assets", err => {
2014-06-04 03:03:21 +08:00
if(err) {
return callback(err);
}
2017-11-08 18:32:05 +08:00
this.applyPluginsAsync("optimize-chunk-assets", this.chunks, err => {
2014-06-04 03:03:21 +08:00
if(err) {
return callback(err);
}
2017-11-08 18:32:05 +08:00
this.applyPlugins1("after-optimize-chunk-assets", this.chunks);
this.applyPluginsAsync("optimize-assets", this.assets, err => {
if(err) {
return callback(err);
}
2017-11-08 18:32:05 +08:00
this.applyPlugins1("after-optimize-assets", this.assets);
if(this.applyPluginsBailResult("need-additional-seal")) {
this.unseal();
return this.seal(callback);
}
2017-11-08 18:32:05 +08:00
return this.applyPluginsAsync("after-seal", callback);
});
});
});
});
}
sortModules(modules) {
modules.sort((a, b) => {
if(a.index < b.index) return -1;
if(a.index > b.index) return 1;
return 0;
});
}
reportDependencyErrorsAndWarnings(module, blocks) {
for(let indexBlock = 0; indexBlock < blocks.length; indexBlock++) {
const block = blocks[indexBlock];
const dependencies = block.dependencies;
for(let indexDep = 0; indexDep < dependencies.length; indexDep++) {
const d = dependencies[indexDep];
const warnings = d.getWarnings();
if(warnings) {
for(let indexWar = 0; indexWar < warnings.length; indexWar++) {
const w = warnings[indexWar];
const warning = new ModuleDependencyWarning(module, w, d.loc);
this.warnings.push(warning);
}
}
const errors = d.getErrors();
if(errors) {
for(let indexErr = 0; indexErr < errors.length; indexErr++) {
const e = errors[indexErr];
const error = new ModuleDependencyError(module, e, d.loc);
this.errors.push(error);
}
}
}
this.reportDependencyErrorsAndWarnings(module, block.blocks);
}
}
addChunk(name, module, loc) {
if(name) {
if(Object.prototype.hasOwnProperty.call(this.namedChunks, name)) {
const chunk = this.namedChunks[name];
if(module) {
chunk.addOrigin(module, loc);
}
return chunk;
2014-06-04 03:03:21 +08:00
}
2014-01-24 20:32:58 +08:00
}
const chunk = new Chunk(name, module, loc);
this.chunks.push(chunk);
if(name) {
this.namedChunks[name] = chunk;
}
return chunk;
2013-01-31 01:49:25 +08:00
}
assignIndex(module) {
const _this = this;
2016-12-05 06:47:19 +08:00
2017-11-08 18:32:05 +08:00
const assignIndexToModule = module => {
// enter module
if(typeof module.index !== "number") {
module.index = _this.nextFreeModuleIndex++;
2016-12-05 06:47:19 +08:00
// leave module
queue.push(() => module.index2 = _this.nextFreeModuleIndex2++);
2016-12-05 06:47:19 +08:00
// enter it as block
assignIndexToDependencyBlock(module);
}
2017-11-08 18:32:05 +08:00
};
2016-12-05 06:47:19 +08:00
2017-11-08 18:32:05 +08:00
const assignIndexToDependency = dependency => {
if(dependency.module) {
queue.push(() => assignIndexToModule(dependency.module));
}
2017-11-08 18:32:05 +08:00
};
2016-12-05 06:47:19 +08:00
2017-11-08 18:32:05 +08:00
const assignIndexToDependencyBlock = block => {
let allDependencies = [];
2016-12-05 06:47:19 +08:00
2017-11-08 18:32:05 +08:00
const iteratorDependency = d => allDependencies.push(d);
2016-12-05 06:47:19 +08:00
2017-11-08 18:32:05 +08:00
const iteratorBlock = b => queue.push(() => assignIndexToDependencyBlock(b));
2016-12-05 06:47:19 +08:00
if(block.variables) {
iterationBlockVariable(block.variables, iteratorDependency);
}
if(block.dependencies) {
iterationOfArrayCallback(block.dependencies, iteratorDependency);
}
if(block.blocks) {
const blocks = block.blocks;
let indexBlock = blocks.length;
while(indexBlock--) {
iteratorBlock(blocks[indexBlock]);
}
}
let indexAll = allDependencies.length;
while(indexAll--) {
iteratorAllDependencies(allDependencies[indexAll]);
}
2017-11-08 18:32:05 +08:00
};
const queue = [() => {
assignIndexToModule(module);
}];
const iteratorAllDependencies = d => {
queue.push(() => assignIndexToDependency(d));
};
while(queue.length) {
queue.pop()();
2016-12-05 06:47:19 +08:00
}
}
assignDepth(module) {
2017-11-08 18:32:05 +08:00
const assignDepthToModule = (module, depth) => {
// enter module
if(typeof module.depth === "number" && module.depth <= depth) return;
module.depth = depth;
// enter it as block
assignDepthToDependencyBlock(module, depth + 1);
2017-11-08 18:32:05 +08:00
};
2016-12-05 06:47:19 +08:00
2017-11-08 18:32:05 +08:00
const assignDepthToDependency = (dependency, depth) => {
if(dependency.module) {
queue.push(() => assignDepthToModule(dependency.module, depth));
}
2017-11-08 18:32:05 +08:00
};
2016-12-05 06:47:19 +08:00
2017-11-08 18:32:05 +08:00
const assignDepthToDependencyBlock = (block, depth) => {
const iteratorDependency = d => assignDepthToDependency(d, depth);
2016-12-05 06:47:19 +08:00
2017-11-08 18:32:05 +08:00
const iteratorBlock = b => assignDepthToDependencyBlock(b, depth);
if(block.variables) {
iterationBlockVariable(block.variables, iteratorDependency);
}
if(block.dependencies) {
iterationOfArrayCallback(block.dependencies, iteratorDependency);
}
if(block.blocks) {
iterationOfArrayCallback(block.blocks, iteratorBlock);
}
2017-11-08 18:32:05 +08:00
};
const queue = [() => {
assignDepthToModule(module, 0);
}];
2017-11-08 18:32:05 +08:00
while(queue.length) {
queue.pop()();
}
}
// This method creates the Chunk graph from the Module graph
processDependenciesBlocksForChunks(inputChunks) {
// Process is splitting into two parts:
// Part one traverse the module graph and builds a very basic chunks graph
// in chunkDependencies.
// Part two traverse every possible way through the basic chunk graph and
// tracks the available modules. While traversing it connects chunks with
// eachother and Blocks with Chunks. It stops traversing when all modules
// for a chunk are already available. So it doesn't connect unneeded chunks.
const chunkDependencies = new Map(); // Map<Chunk, Array<{Module, Chunk}>>
const allCreatedChunks = new Set();
// PART ONE
const blockChunks = new Map();
// Start with the provided modules/chunks
const queue = inputChunks.map(chunk => ({
block: chunk.entryModule,
chunk: chunk
}));
let block, chunk;
// For each async Block in graph
const iteratorBlock = b => {
// 1. We create a chunk for this Block
// but only once (blockChunks map)
let c = blockChunks.get(b);
if(c === undefined) {
c = this.namedChunks[b.chunkName];
if(c && c.isInitial()) {
// TODO webpack 4: convert this to an error
this.warnings.push(new AsyncDependencyToInitialChunkWarning(b.chunkName, b.module, b.loc));
c = chunk;
} else {
c = this.addChunk(b.chunkName, b.module, b.loc);
blockChunks.set(b, c);
allCreatedChunks.add(c);
// We initialize the chunks property
// this is later filled with the chunk when needed
b.chunks = [];
}
}
// 2. We store the Block+Chunk mapping as dependency for the chunk
let deps = chunkDependencies.get(chunk);
if(!deps) chunkDependencies.set(chunk, deps = []);
deps.push({
block: b,
chunk: c
});
// 3. We enqueue the DependenciesBlock for traversal
queue.push({
block: b,
chunk: c
});
};
// For each Dependency in the graph
const iteratorDependency = d => {
// We skip Dependencies without Reference
2017-08-08 15:28:34 +08:00
const ref = d.getReference();
if(!ref) {
return;
}
// We skip Dependencies without Module pointer
2017-08-08 15:28:34 +08:00
const refModule = ref.module;
if(!refModule) {
return;
}
// We skip weak Dependencies
if(ref.weak) {
return;
}
// We connect Module and Chunk when not already done
2017-08-08 15:28:34 +08:00
if(chunk.addModule(refModule)) {
refModule.addChunk(chunk);
// And enqueue the Module for traversal
queue.push({
2017-08-08 15:28:34 +08:00
block: refModule,
module: refModule,
chunk
});
}
};
// Iterative traversal of the Module graph
// Recursive would be simpler to write but could result in Stack Overflows
while(queue.length) {
const queueItem = queue.pop();
block = queueItem.block;
chunk = queueItem.chunk;
// Traverse all variables, Dependencies and Blocks
if(block.variables) {
iterationBlockVariable(block.variables, iteratorDependency);
}
if(block.dependencies) {
iterationOfArrayCallback(block.dependencies, iteratorDependency);
}
if(block.blocks) {
iterationOfArrayCallback(block.blocks, iteratorBlock);
}
}
// PART TWO
let availableModules;
let newAvailableModules;
const queue2 = new Queue(inputChunks.map(chunk => ({
chunk,
availableModules: new Set()
})));
// Helper function to check if all modules of a chunk are available
const areModulesAvailable = (chunk, availableModules) => {
for(const module of chunk.modulesIterable) {
if(!availableModules.has(module))
return false;
}
return true;
};
// For each edge in the basic chunk graph
const filterFn = dep => {
// Filter egdes that are not needed because all modules are already available
// This also filters circular dependencies in the chunks graph
const depChunk = dep.chunk;
if(areModulesAvailable(depChunk, newAvailableModules))
return false; // break all modules are already available
return true;
};
const minAvailableModulesMap = new Map();
// Iterative traversing of the basic chunk graph
while(queue2.length) {
const queueItem = queue2.dequeue();
chunk = queueItem.chunk;
availableModules = queueItem.availableModules;
// 1. Get minimal available modules
// It doesn't make sense to traverse a chunk again with more available modules.
// This step calculates the minimal available modules and skips traversal when
// the list didn't shrink.
let minAvailableModules = minAvailableModulesMap.get(chunk);
if(minAvailableModules === undefined) {
minAvailableModulesMap.set(chunk, new Set(availableModules));
} else {
let deletedModules = false;
for(const m of minAvailableModules) {
if(!availableModules.has(m)) {
minAvailableModules.delete(m);
deletedModules = true;
}
}
if(!deletedModules)
continue;
availableModules = minAvailableModules;
}
// 2. Get the edges at this point of the graph
const deps = chunkDependencies.get(chunk);
if(!deps) continue;
if(deps.length === 0) continue;
// 3. Create a new Set of available modules at this points
newAvailableModules = new Set(availableModules);
for(const m of chunk.modulesIterable)
newAvailableModules.add(m);
// 4. Filter edges with available modules
const filteredDeps = deps.filter(filterFn);
// 5. Foreach remaining edge
const nextChunks = new Set();
for(let i = 0; i < filteredDeps.length; i++) {
const dep = filteredDeps[i];
const depChunk = dep.chunk;
const depBlock = dep.block;
// 6. Connnect block with chunk
if(depChunk.addBlock(depBlock)) {
depBlock.chunks.push(depChunk);
}
// 7. Connect chunk with parent
if(chunk.addChunk(depChunk)) {
depChunk.addParent(chunk);
}
nextChunks.add(depChunk);
}
// 8. Enqueue further traversal
for(const nextChunk of nextChunks) {
queue2.enqueue({
chunk: nextChunk,
availableModules: newAvailableModules
});
}
}
// Remove all unconnected chunks
for(const chunk of allCreatedChunks) {
if(chunk.getNumberOfParents() === 0)
chunk.remove("unconnected");
}
}
removeReasonsOfDependencyBlock(module, block) {
const iteratorDependency = d => {
if(!d.module) {
return;
}
if(d.module.removeReason(module, d)) {
d.module.forEachChunk(chunk => this.patchChunksAfterReasonRemoval(d.module, chunk));
}
};
if(block.blocks) {
iterationOfArrayCallback(block.blocks, block => this.removeReasonsOfDependencyBlock(module, block));
}
if(block.dependencies) {
iterationOfArrayCallback(block.dependencies, iteratorDependency);
}
if(block.variables) {
iterationBlockVariable(block.variables, iteratorDependency);
}
}
patchChunksAfterReasonRemoval(module, chunk) {
if(!module.hasReasons()) {
this.removeReasonsOfDependencyBlock(module, module);
}
if(!module.hasReasonForChunk(chunk)) {
if(module.removeChunk(chunk)) {
this.removeChunkFromDependencies(module, chunk);
}
}
}
removeChunkFromDependencies(block, chunk) {
const iteratorDependency = d => {
if(!d.module) {
return;
}
this.patchChunksAfterReasonRemoval(d.module, chunk);
};
const blocks = block.blocks;
for(let indexBlock = 0; indexBlock < blocks.length; indexBlock++) {
const chunks = blocks[indexBlock].chunks;
for(let indexChunk = 0; indexChunk < chunks.length; indexChunk++) {
const blockChunk = chunks[indexChunk];
chunk.removeChunk(blockChunk);
blockChunk.removeParent(chunk);
this.removeChunkFromDependencies(chunks, blockChunk);
}
}
if(block.dependencies) {
iterationOfArrayCallback(block.dependencies, iteratorDependency);
}
if(block.variables) {
iterationBlockVariable(block.variables, iteratorDependency);
2016-12-05 06:47:19 +08:00
}
2014-11-02 19:17:05 +08:00
}
applyModuleIds() {
let unusedIds = [];
let nextFreeModuleId = 0;
let usedIds = [];
2017-01-26 03:47:11 +08:00
// TODO consider Map when performance has improved https://gist.github.com/sokra/234c077e1299b7369461f1708519c392
const usedIdMap = Object.create(null);
if(this.usedModuleIds) {
Object.keys(this.usedModuleIds).forEach(key => {
const id = this.usedModuleIds[key];
if(!usedIdMap[id]) {
usedIds.push(id);
usedIdMap[id] = true;
}
});
}
const modules1 = this.modules;
for(let indexModule1 = 0; indexModule1 < modules1.length; indexModule1++) {
const module1 = modules1[indexModule1];
if(module1.id && !usedIdMap[module1.id]) {
usedIds.push(module1.id);
usedIdMap[module1.id] = true;
}
}
if(usedIds.length > 0) {
let usedIdMax = -1;
for(let index = 0; index < usedIds.length; index++) {
const usedIdKey = usedIds[index];
if(typeof usedIdKey !== "number") {
continue;
}
usedIdMax = Math.max(usedIdMax, usedIdKey);
}
let lengthFreeModules = nextFreeModuleId = usedIdMax + 1;
while(lengthFreeModules--) {
if(!usedIdMap[lengthFreeModules]) {
unusedIds.push(lengthFreeModules);
}
}
}
const modules2 = this.modules;
for(let indexModule2 = 0; indexModule2 < modules2.length; indexModule2++) {
const module2 = modules2[indexModule2];
if(module2.id === null) {
if(unusedIds.length > 0)
module2.id = unusedIds.pop();
else
module2.id = nextFreeModuleId++;
}
}
}
applyChunkIds() {
const unusedIds = [];
let nextFreeChunkId = 0;
2017-11-08 18:32:05 +08:00
if(this.usedChunkIds) {
const keyChunks = Object.keys(this.usedChunkIds);
for(let index = 0; index < keyChunks.length; index++) {
const usedIdKey = keyChunks[index];
2017-11-08 18:32:05 +08:00
const usedIdValue = this.usedChunkIds[usedIdKey];
if(typeof usedIdValue !== "number") {
continue;
}
2017-11-08 18:32:05 +08:00
nextFreeChunkId = Math.max(nextFreeChunkId - 1, usedIdValue) + 1;
}
let index = nextFreeChunkId;
while(index--) {
if(this.usedChunkIds[index] !== index) {
unusedIds.push(index);
}
}
2013-05-08 19:28:54 +08:00
}
const chunks = this.chunks;
for(let indexChunk = 0; indexChunk < chunks.length; indexChunk++) {
const chunk = chunks[indexChunk];
if(chunk.id === null) {
if(unusedIds.length > 0)
chunk.id = unusedIds.pop();
else
chunk.id = nextFreeChunkId++;
}
if(!chunk.ids) {
chunk.ids = [chunk.id];
}
}
}
2013-01-31 01:49:25 +08:00
sortItemsWithModuleIds() {
this.modules.sort(byId);
const modules = this.modules;
for(let indexModule = 0; indexModule < modules.length; indexModule++) {
2017-04-19 13:57:21 +08:00
modules[indexModule].sortItems(false);
}
const chunks = this.chunks;
for(let indexChunk = 0; indexChunk < chunks.length; indexChunk++) {
2017-09-22 23:23:49 +08:00
chunks[indexChunk].sortItems(false);
}
}
sortItemsWithChunkIds() {
this.chunks.sort(byId);
const modules = this.modules;
for(let indexModule = 0; indexModule < modules.length; indexModule++) {
2017-04-19 13:57:21 +08:00
modules[indexModule].sortItems(true);
}
const chunks = this.chunks;
for(let indexChunk = 0; indexChunk < chunks.length; indexChunk++) {
2017-09-22 23:23:49 +08:00
chunks[indexChunk].sortItems(true);
}
2017-08-11 20:35:08 +08:00
const byMessage = (a, b) => {
const ma = `${a.message}`;
const mb = `${b.message}`;
if(ma < mb) return -1;
if(mb < ma) return 1;
return 0;
2017-08-11 22:58:18 +08:00
};
2017-08-11 20:35:08 +08:00
this.errors.sort(byMessage);
this.warnings.sort(byMessage);
}
summarizeDependencies() {
2017-11-06 23:41:26 +08:00
this.fileDependencies = new SortableSet(this.compilationDependencies);
this.contextDependencies = new SortableSet();
this.missingDependencies = new SortableSet();
const children = this.children;
for(let indexChildren = 0; indexChildren < children.length; indexChildren++) {
const child = children[indexChildren];
2017-11-06 23:41:26 +08:00
addAllToSet(this.fileDependencies, child.fileDependencies);
addAllToSet(this.contextDependencies, child.contextDependencies);
addAllToSet(this.missingDependencies, child.missingDependencies);
}
const modules = this.modules;
for(let indexModule = 0; indexModule < modules.length; indexModule++) {
const module = modules[indexModule];
if(module.fileDependencies) {
2017-11-06 23:41:26 +08:00
addAllToSet(this.fileDependencies, module.fileDependencies);
}
if(module.contextDependencies) {
2017-11-06 23:41:26 +08:00
addAllToSet(this.contextDependencies, module.contextDependencies);
}
}
this.errors.forEach(error => {
2017-11-06 23:41:26 +08:00
if(typeof error.missing === "object" && error.missing && error.missing[Symbol.iterator]) {
addAllToSet(this.missingDependencies, error.missing);
}
});
this.fileDependencies.sort();
this.contextDependencies.sort();
this.missingDependencies.sort();
}
createHash() {
const outputOptions = this.outputOptions;
const hashFunction = outputOptions.hashFunction;
const hashDigest = outputOptions.hashDigest;
const hashDigestLength = outputOptions.hashDigestLength;
2017-01-09 21:55:44 +08:00
const hash = crypto.createHash(hashFunction);
2016-06-05 02:03:42 +08:00
if(outputOptions.hashSalt)
hash.update(outputOptions.hashSalt);
this.mainTemplate.updateHash(hash);
this.chunkTemplate.updateHash(hash);
2017-11-11 18:27:02 +08:00
Object.keys(this.moduleTemplates).sort().forEach(key => this.moduleTemplates[key].updateHash(hash));
2017-11-08 18:32:05 +08:00
this.children.forEach(child => hash.update(child.hash));
this.warnings.forEach(warning => hash.update(`${warning.message}`));
this.errors.forEach(error => hash.update(`${error.message}`));
2017-10-30 20:56:57 +08:00
const modules = this.modules;
for(let i = 0; i < modules.length; i++) {
const module = modules[i];
const moduleHash = crypto.createHash(hashFunction);
module.updateHash(moduleHash);
module.hash = moduleHash.digest(hashDigest);
module.renderedHash = module.hash.substr(0, hashDigestLength);
}
// clone needed as sort below is inplace mutation
const chunks = this.chunks.slice();
/**
* sort here will bring all "falsy" values to the beginning
* this is needed as the "hasRuntime()" chunks are dependent on the
* hashes of the non-runtime chunks.
*/
chunks.sort((a, b) => {
const aEntry = a.hasRuntime();
const bEntry = b.hasRuntime();
if(aEntry && !bEntry) return 1;
if(!aEntry && bEntry) return -1;
return 0;
});
for(let i = 0; i < chunks.length; i++) {
const chunk = chunks[i];
2017-01-09 21:55:44 +08:00
const chunkHash = crypto.createHash(hashFunction);
if(outputOptions.hashSalt)
chunkHash.update(outputOptions.hashSalt);
chunk.updateHash(chunkHash);
if(chunk.hasRuntime()) {
this.mainTemplate.updateHashForChunk(chunkHash, chunk);
} else {
2017-02-25 04:24:18 +08:00
this.chunkTemplate.updateHashForChunk(chunkHash, chunk);
}
this.applyPlugins2("chunk-hash", chunk, chunkHash);
chunk.hash = chunkHash.digest(hashDigest);
hash.update(chunk.hash);
chunk.renderedHash = chunk.hash.substr(0, hashDigestLength);
}
this.fullHash = hash.digest(hashDigest);
this.hash = this.fullHash.substr(0, hashDigestLength);
2013-02-13 20:00:01 +08:00
}
modifyHash(update) {
const outputOptions = this.outputOptions;
const hashFunction = outputOptions.hashFunction;
const hashDigest = outputOptions.hashDigest;
const hashDigestLength = outputOptions.hashDigestLength;
2017-01-09 21:55:44 +08:00
const hash = crypto.createHash(hashFunction);
hash.update(this.fullHash);
hash.update(update);
this.fullHash = hash.digest(hashDigest);
this.hash = this.fullHash.substr(0, hashDigestLength);
2016-10-29 17:11:44 +08:00
}
createModuleAssets() {
for(let i = 0; i < this.modules.length; i++) {
const module = this.modules[i];
if(module.assets) {
Object.keys(module.assets).forEach((assetName) => {
const fileName = this.getPath(assetName);
this.assets[fileName] = module.assets[assetName];
this.applyPlugins2("module-asset", module, fileName);
});
}
2013-01-31 01:49:25 +08:00
}
}
createChunkAssets() {
const outputOptions = this.outputOptions;
for(let i = 0; i < this.chunks.length; i++) {
const chunk = this.chunks[i];
chunk.files = [];
let source;
let file;
2017-10-30 20:56:57 +08:00
let filenameTemplate;
try {
2017-10-30 20:56:57 +08:00
const template = chunk.hasRuntime() ? this.mainTemplate : this.chunkTemplate;
const manifest = template.getRenderManifest({
chunk,
hash: this.hash,
fullHash: this.fullHash,
outputOptions,
moduleTemplates: this.moduleTemplates,
dependencyTemplates: this.dependencyTemplates
}); // [{ render(), filenameTemplate, pathOptions, identifier, hash }]
for(const fileManifest of manifest) {
const cacheName = fileManifest.identifier;
const usedHash = fileManifest.hash;
filenameTemplate = fileManifest.filenameTemplate;
if(this.cache && this.cache[cacheName] && this.cache[cacheName].hash === usedHash) {
source = this.cache[cacheName].source;
} else {
2017-10-30 20:56:57 +08:00
source = fileManifest.render();
if(this.cache) {
this.cache[cacheName] = {
hash: usedHash,
source: source = (source instanceof CachedSource ? source : new CachedSource(source))
};
}
}
2017-10-30 20:56:57 +08:00
file = this.getPath(filenameTemplate, fileManifest.pathOptions);
if(this.assets[file] && this.assets[file] !== source)
throw new Error(`Conflict: Multiple assets emit to the same filename ${file}`);
this.assets[file] = source;
chunk.files.push(file);
this.applyPlugins2("chunk-asset", chunk, file);
}
} catch(err) {
this.errors.push(new ChunkRenderError(chunk, file || filenameTemplate, err));
2013-05-08 19:28:54 +08:00
}
2013-12-03 18:19:30 +08:00
}
2013-01-31 01:49:25 +08:00
}
getPath(filename, data) {
data = data || {};
data.hash = data.hash || this.hash;
return this.mainTemplate.applyPluginsWaterfall("asset-path", filename, data);
}
createChildCompiler(name, outputOptions, plugins) {
2017-11-15 16:28:45 +08:00
const idx = (this.childrenCounters[name] || 0);
this.childrenCounters[name] = idx + 1;
return this.compiler.createChildCompiler(this, name, idx, outputOptions, plugins);
}
checkConstraints() {
const usedIds = {};
const modules = this.modules;
for(let indexModule = 0; indexModule < modules.length; indexModule++) {
const moduleId = modules[indexModule].id;
if(usedIds[moduleId])
throw new Error(`checkConstraints: duplicate module id ${moduleId}`);
}
const chunks = this.chunks;
for(let indexChunk = 0; indexChunk < chunks.length; indexChunk++) {
const chunk = chunks[indexChunk];
if(chunks.indexOf(chunk) !== indexChunk)
throw new Error(`checkConstraints: duplicate chunk in compilation ${chunk.debugId}`);
chunk.checkConstraints();
}
}
}
Object.defineProperty(Compilation.prototype, "moduleTemplate", {
configurable: false,
get: util.deprecate(function() {
return this.moduleTemplates.javascript;
}, "Compilation.moduleTemplate: Use Compilation.moduleTemplates.javascript instead"),
set: util.deprecate(function(value) {
2017-11-11 18:27:02 +08:00
this.moduleTemplates.javascript = value;
}, "Compilation.moduleTemplate: Use Compilation.moduleTemplates.javascript instead.")
});
module.exports = Compilation;