Sha256: c30eb10a1137fd08473fac8c6f46a2120d14de120661ac0684a35deae2dfb969

Contents?: true

Size: 1.45 KB

Versions: 27

Compression:

Stored size: 1.45 KB

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
"use strict";
const SingleEntryDependency = require("./dependencies/SingleEntryDependency");

/** @typedef {import("./Compiler")} Compiler */

class SingleEntryPlugin {
	/**
	 * An entry plugin which will handle
	 * creation of the SingleEntryDependency
	 *
	 * @param {string} context context path
	 * @param {string} entry entry path
	 * @param {string} name entry key name
	 */
	constructor(context, entry, name) {
		this.context = context;
		this.entry = entry;
		this.name = name;
	}

	/**
	 * @param {Compiler} compiler the compiler instance
	 * @returns {void}
	 */
	apply(compiler) {
		compiler.hooks.compilation.tap(
			"SingleEntryPlugin",
			(compilation, { normalModuleFactory }) => {
				compilation.dependencyFactories.set(
					SingleEntryDependency,
					normalModuleFactory
				);
			}
		);

		compiler.hooks.make.tapAsync(
			"SingleEntryPlugin",
			(compilation, callback) => {
				const { entry, name, context } = this;

				const dep = SingleEntryPlugin.createDependency(entry, name);
				compilation.addEntry(context, dep, name, callback);
			}
		);
	}

	/**
	 * @param {string} entry entry request
	 * @param {string} name entry name
	 * @returns {SingleEntryDependency} the dependency
	 */
	static createDependency(entry, name) {
		const dep = new SingleEntryDependency(entry);
		dep.loc = { name };
		return dep;
	}
}

module.exports = SingleEntryPlugin;

Version data entries

27 entries across 26 versions & 9 rubygems

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