Sha256: d9c8ad9211c2c93b7e93cee91b6e1306ee093eb85b2ff438cee32fb3891d002e
Contents?: true
Size: 460 Bytes
Versions: 62
Compression:
Stored size: 460 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ function LoaderTargetPlugin(target) { this.target = target; } module.exports = LoaderTargetPlugin; LoaderTargetPlugin.prototype.apply = function(compiler) { var target = this.target; compiler.plugin("compilation", function(compilation) { compilation.plugin("normal-module-loader", function(loaderContext) { loaderContext.target = target; }); }); };
Version data entries
62 entries across 62 versions & 1 rubygems