@dillonkearns/elm-graphql
Version:
<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">
26 lines (23 loc) • 814 B
JavaScript
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
;
const WebWorkerMainTemplatePlugin = require("./WebWorkerMainTemplatePlugin");
const WebWorkerChunkTemplatePlugin = require("./WebWorkerChunkTemplatePlugin");
const WebWorkerHotUpdateChunkTemplatePlugin = require("./WebWorkerHotUpdateChunkTemplatePlugin");
class WebWorkerTemplatePlugin {
apply(compiler) {
compiler.hooks.thisCompilation.tap(
"WebWorkerTemplatePlugin",
compilation => {
new WebWorkerMainTemplatePlugin().apply(compilation.mainTemplate);
new WebWorkerChunkTemplatePlugin().apply(compilation.chunkTemplate);
new WebWorkerHotUpdateChunkTemplatePlugin().apply(
compilation.hotUpdateChunkTemplate
);
}
);
}
}
module.exports = WebWorkerTemplatePlugin;