Sha256: f0356565a3547c1838ee81b5dcfc319479da2d4d91450bf9bace12ec7c748bd4

Contents?: true

Size: 1.09 KB

Versions: 27

Compression:

Stored size: 1.09 KB

Contents

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

const { RawSource } = require("webpack-sources");
const Module = require("./Module");

/** @typedef {import("./util/createHash").Hash} Hash */

class DllModule extends Module {
	constructor(context, dependencies, name, type) {
		super("javascript/dynamic", context);

		// Info from Factory
		this.dependencies = dependencies;
		this.name = name;
		this.type = type;
	}

	identifier() {
		return `dll ${this.name}`;
	}

	readableIdentifier() {
		return `dll ${this.name}`;
	}

	build(options, compilation, resolver, fs, callback) {
		this.built = true;
		this.buildMeta = {};
		this.buildInfo = {};
		return callback();
	}

	source() {
		return new RawSource("module.exports = __webpack_require__;");
	}

	needRebuild() {
		return false;
	}

	size() {
		return 12;
	}

	/**
	 * @param {Hash} hash the hash used to track dependencies
	 * @returns {void}
	 */
	updateHash(hash) {
		hash.update("dll module");
		hash.update(this.name || "");
		super.updateHash(hash);
	}
}

module.exports = DllModule;

Version data entries

27 entries across 26 versions & 9 rubygems

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