Sha256: 8a6e8a71f2a556970636b1a2b8b81a05c5da0506751feee539381ec52b599856
Contents?: true
Size: 879 Bytes
Versions: 11
Compression:
Stored size: 879 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const ConcatSource = require("webpack-sources").ConcatSource; class JsonpHotUpdateChunkTemplatePlugin { apply(hotUpdateChunkTemplate) { hotUpdateChunkTemplate.plugin("render", function(modulesSource, modules, removedModules, hash, id) { const source = new ConcatSource(); source.add(`${this.outputOptions.hotUpdateFunction}(${JSON.stringify(id)},`); source.add(modulesSource); source.add(")"); return source; }); hotUpdateChunkTemplate.plugin("hash", function(hash) { hash.update("JsonpHotUpdateChunkTemplatePlugin"); hash.update("3"); hash.update(`${this.outputOptions.hotUpdateFunction}`); hash.update(`${this.outputOptions.library}`); }); } } module.exports = JsonpHotUpdateChunkTemplatePlugin;
Version data entries
11 entries across 7 versions & 4 rubygems