summaryrefslogtreecommitdiffstats
path: root/node_modules/webpack/lib/DllModuleFactory.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/webpack/lib/DllModuleFactory.js')
-rw-r--r--node_modules/webpack/lib/DllModuleFactory.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/node_modules/webpack/lib/DllModuleFactory.js b/node_modules/webpack/lib/DllModuleFactory.js
new file mode 100644
index 0000000..f5d12dd
--- /dev/null
+++ b/node_modules/webpack/lib/DllModuleFactory.js
@@ -0,0 +1,29 @@
+/*
+ MIT License http://www.opensource.org/licenses/mit-license.php
+ Author Tobias Koppers @sokra
+*/
+"use strict";
+
+const { Tapable } = require("tapable");
+const DllModule = require("./DllModule");
+
+class DllModuleFactory extends Tapable {
+ constructor() {
+ super();
+ this.hooks = {};
+ }
+ create(data, callback) {
+ const dependency = data.dependencies[0];
+ callback(
+ null,
+ new DllModule(
+ data.context,
+ dependency.dependencies,
+ dependency.name,
+ dependency.type
+ )
+ );
+ }
+}
+
+module.exports = DllModuleFactory;