From de98e0b232509d5f40c135d540a70e415272ff85 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 3 May 2017 15:35:00 +0200 Subject: node_modules --- .../webpack/lib/SetVarMainTemplatePlugin.js | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 node_modules/webpack/lib/SetVarMainTemplatePlugin.js (limited to 'node_modules/webpack/lib/SetVarMainTemplatePlugin.js') diff --git a/node_modules/webpack/lib/SetVarMainTemplatePlugin.js b/node_modules/webpack/lib/SetVarMainTemplatePlugin.js new file mode 100644 index 000000000..67b3e744e --- /dev/null +++ b/node_modules/webpack/lib/SetVarMainTemplatePlugin.js @@ -0,0 +1,41 @@ +/* + MIT License http://www.opensource.org/licenses/mit-license.php + Author Tobias Koppers @sokra +*/ +"use strict"; + +const ConcatSource = require("webpack-sources").ConcatSource; + +class SetVarMainTemplatePlugin { + constructor(varExpression, copyObject) { + this.varExpression = varExpression; + this.copyObject = copyObject; + } + + apply(compilation) { + const mainTemplate = compilation.mainTemplate; + compilation.templatesPlugin("render-with-entry", (source, chunk, hash) => { + const varExpression = mainTemplate.applyPluginsWaterfall("asset-path", this.varExpression, { + hash, + chunk + }); + if(this.copyObject) { + return new ConcatSource(`(function(e, a) { for(var i in a) e[i] = a[i]; }(${varExpression}, `, source, "))"); + } else { + const prefix = `${varExpression} =\n`; + return new ConcatSource(prefix, source); + } + }); + mainTemplate.plugin("global-hash-paths", (paths) => { + if(this.varExpression) paths.push(this.varExpression); + return paths; + }); + mainTemplate.plugin("hash", hash => { + hash.update("set var"); + hash.update(`${this.varExpression}`); + hash.update(`${this.copyObject}`); + }); + } +} + +module.exports = SetVarMainTemplatePlugin; -- cgit v1.2.3