Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
37 lines (32 sloc)
1008 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| MIT License http://www.opensource.org/licenses/mit-license.php | |
| Author Tobias Koppers @sokra | |
| */ | |
| "use strict"; | |
| const DllModule = require("./DllModule"); | |
| const ModuleFactory = require("./ModuleFactory"); | |
| /** @typedef {import("./ModuleFactory").ModuleFactoryCreateData} ModuleFactoryCreateData */ | |
| /** @typedef {import("./ModuleFactory").ModuleFactoryResult} ModuleFactoryResult */ | |
| /** @typedef {import("./dependencies/DllEntryDependency")} DllEntryDependency */ | |
| class DllModuleFactory extends ModuleFactory { | |
| constructor() { | |
| super(); | |
| this.hooks = Object.freeze({}); | |
| } | |
| /** | |
| * @param {ModuleFactoryCreateData} data data object | |
| * @param {function(Error=, ModuleFactoryResult=): void} callback callback | |
| * @returns {void} | |
| */ | |
| create(data, callback) { | |
| const dependency = /** @type {DllEntryDependency} */ (data.dependencies[0]); | |
| callback(null, { | |
| module: new DllModule( | |
| data.context, | |
| dependency.dependencies, | |
| dependency.name | |
| ) | |
| }); | |
| } | |
| } | |
| module.exports = DllModuleFactory; |