summaryrefslogtreecommitdiffstats
path: root/node_modules/webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin.js')
-rw-r--r--node_modules/webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/node_modules/webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin.js b/node_modules/webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin.js
deleted file mode 100644
index bff023c..0000000
--- a/node_modules/webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin.js
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
-*/
-"use strict";
-
-const { ConcatSource } = require("webpack-sources");
-
-class JsonpHotUpdateChunkTemplatePlugin {
- apply(hotUpdateChunkTemplate) {
- hotUpdateChunkTemplate.hooks.render.tap(
- "JsonpHotUpdateChunkTemplatePlugin",
- (modulesSource, modules, removedModules, hash, id) => {
- const source = new ConcatSource();
- source.add(
- `${
- hotUpdateChunkTemplate.outputOptions.hotUpdateFunction
- }(${JSON.stringify(id)},`
- );
- source.add(modulesSource);
- source.add(")");
- return source;
- }
- );
- hotUpdateChunkTemplate.hooks.hash.tap(
- "JsonpHotUpdateChunkTemplatePlugin",
- hash => {
- hash.update("JsonpHotUpdateChunkTemplatePlugin");
- hash.update("3");
- hash.update(
- `${hotUpdateChunkTemplate.outputOptions.hotUpdateFunction}`
- );
- hash.update(`${hotUpdateChunkTemplate.outputOptions.library}`);
- }
- );
- }
-}
-
-module.exports = JsonpHotUpdateChunkTemplatePlugin;