webpack/lib/webworker/WebWorkerChunkTemplatePlugi...

30 lines
925 B
JavaScript
Raw Permalink Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
2017-07-04 21:13:57 +08:00
const ConcatSource = require("webpack-sources").ConcatSource;
const Template = require("../Template");
class WebWorkerChunkTemplatePlugin {
apply(chunkTemplate) {
chunkTemplate.plugin("render", function(modules, chunk) {
const chunkCallbackName = this.outputOptions.chunkCallbackName || Template.toIdentifier("webpackChunk" + (this.outputOptions.library || ""));
const source = new ConcatSource();
2017-02-21 06:14:02 +08:00
source.add(`${chunkCallbackName}(${JSON.stringify(chunk.ids)},`);
source.add(modules);
source.add(")");
return source;
});
chunkTemplate.plugin("hash", function(hash) {
hash.update("webworker");
hash.update("3");
2017-02-21 06:14:02 +08:00
hash.update(`${this.outputOptions.chunkCallbackName}`);
hash.update(`${this.outputOptions.library}`);
});
}
}
module.exports = WebWorkerChunkTemplatePlugin;