Sha256: 7e46641f5e081d49106e255f004355c246baa5724a467086a8b1c67bcea01aa5
Contents?: true
Size: 925 Bytes
Versions: 62
Compression:
Stored size: 925 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ var NodeMainTemplatePlugin = require("./NodeMainTemplatePlugin"); var NodeChunkTemplatePlugin = require("./NodeChunkTemplatePlugin"); var NodeHotUpdateChunkTemplatePlugin = require("./NodeHotUpdateChunkTemplatePlugin"); function NodeTemplatePlugin(options, asyncChunkLoading) { // TODO remove options parameter this.options = options; this.asyncChunkLoading = asyncChunkLoading; } module.exports = NodeTemplatePlugin; NodeTemplatePlugin.prototype.apply = function(compiler) { var options = this.options; compiler.plugin("this-compilation", function(compilation) { compilation.mainTemplate.apply(new NodeMainTemplatePlugin(this.asyncChunkLoading)); compilation.chunkTemplate.apply(new NodeChunkTemplatePlugin()); compilation.hotUpdateChunkTemplate.apply(new NodeHotUpdateChunkTemplatePlugin()); }.bind(this)); };
Version data entries
62 entries across 62 versions & 1 rubygems