Sha256: 941d8010556352df0ec7af73c8181c8a340a976200bbc97b8bdabb664546d824

Contents?: true

Size: 1.18 KB

Versions: 29

Compression:

Stored size: 1.18 KB

Contents

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

class WebWorkerHotUpdateChunkTemplatePlugin {
	apply(hotUpdateChunkTemplate) {
		hotUpdateChunkTemplate.hooks.render.tap(
			"WebWorkerHotUpdateChunkTemplatePlugin",
			(modulesSource, modules, removedModules, hash, id) => {
				const hotUpdateFunction =
					hotUpdateChunkTemplate.outputOptions.hotUpdateFunction;
				const globalObject = hotUpdateChunkTemplate.outputOptions.globalObject;
				const source = new ConcatSource();
				source.add(
					`${globalObject}[${JSON.stringify(
						hotUpdateFunction
					)}](${JSON.stringify(id)},`
				);
				source.add(modulesSource);
				source.add(")");
				return source;
			}
		);
		hotUpdateChunkTemplate.hooks.hash.tap(
			"WebWorkerHotUpdateChunkTemplatePlugin",
			hash => {
				hash.update("WebWorkerHotUpdateChunkTemplatePlugin");
				hash.update("3");
				hash.update(
					hotUpdateChunkTemplate.outputOptions.hotUpdateFunction + ""
				);
				hash.update(hotUpdateChunkTemplate.outputOptions.globalObject + "");
			}
		);
	}
}
module.exports = WebWorkerHotUpdateChunkTemplatePlugin;

Version data entries

29 entries across 28 versions & 10 rubygems

Version Path
ezii-os-5.2.1 node_modules/webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js
ezii-os-2.0.1 node_modules/webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js
ezii-os-1.1.0 node_modules/webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js
ezii-os-1.0.0 node_modules/webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js
ezii-os-0.0.0.1.0 node_modules/webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js
ezii-os-0.0.0.0.1 node_modules/webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js
locomotivecms-3.4.0 app/javascript/node_modules/webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js
dragonfly_puppeteer-0.1.0 node_modules/webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js