Sha256: 38ede129496f7353e732d29eb19ebf89d2d77c865a7642124fe3c870778fc581

Contents?: true

Size: 1.24 KB

Versions: 27

Compression:

Stored size: 1.24 KB

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
"use strict";

const DllEntryDependency = require("./dependencies/DllEntryDependency");
const SingleEntryDependency = require("./dependencies/SingleEntryDependency");
const DllModuleFactory = require("./DllModuleFactory");

class DllEntryPlugin {
	constructor(context, entries, name) {
		this.context = context;
		this.entries = entries;
		this.name = name;
	}

	apply(compiler) {
		compiler.hooks.compilation.tap(
			"DllEntryPlugin",
			(compilation, { normalModuleFactory }) => {
				const dllModuleFactory = new DllModuleFactory();
				compilation.dependencyFactories.set(
					DllEntryDependency,
					dllModuleFactory
				);
				compilation.dependencyFactories.set(
					SingleEntryDependency,
					normalModuleFactory
				);
			}
		);
		compiler.hooks.make.tapAsync("DllEntryPlugin", (compilation, callback) => {
			compilation.addEntry(
				this.context,
				new DllEntryDependency(
					this.entries.map((e, idx) => {
						const dep = new SingleEntryDependency(e);
						dep.loc = {
							name: this.name,
							index: idx
						};
						return dep;
					}),
					this.name
				),
				this.name,
				callback
			);
		});
	}
}

module.exports = DllEntryPlugin;

Version data entries

27 entries across 26 versions & 9 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/webpack/lib/DllEntryPlugin.js
disco_app-0.18.0 test/dummy/node_modules/webpack/lib/DllEntryPlugin.js
disco_app-0.18.2 test/dummy/node_modules/webpack/lib/DllEntryPlugin.js
disco_app-0.16.1 test/dummy/node_modules/webpack/lib/DllEntryPlugin.js
disco_app-0.15.2 test/dummy/node_modules/webpack/lib/DllEntryPlugin.js
disco_app-0.18.4 test/dummy/node_modules/webpack/lib/DllEntryPlugin.js
disco_app-0.18.1 test/dummy/node_modules/webpack/lib/DllEntryPlugin.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/DllEntryPlugin.js
disco_app-0.14.0 test/dummy/node_modules/webpack/lib/DllEntryPlugin.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/DllEntryPlugin.js
tang-0.2.1 spec/tang_app/node_modules/webpack/lib/DllEntryPlugin.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/webpack/lib/DllEntryPlugin.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/webpack/lib/DllEntryPlugin.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/webpack/lib/DllEntryPlugin.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/webpack/lib/DllEntryPlugin.js
tang-0.2.0 spec/tang_app/node_modules/webpack/lib/DllEntryPlugin.js
tang-0.1.0 spec/tang_app/node_modules/webpack/lib/DllEntryPlugin.js
tang-0.0.9 spec/tang_app/node_modules/webpack/lib/DllEntryPlugin.js
enju_library-0.3.8 spec/dummy/node_modules/webpack/lib/DllEntryPlugin.js
jester-data-8.0.0 node_modules/webpack/lib/DllEntryPlugin.js