Revision e949aa151234b8e4a0574aac654dc38d3d82e641 authored by Sean Larkin on 04 November 2016, 18:43:24 UTC, committed by Tobias Koppers on 07 December 2016, 16:21:22 UTC
1 parent 0084071
Raw File
ExternalsPlugin.js
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
var ExternalModuleFactoryPlugin = require("./ExternalModuleFactoryPlugin");

function ExternalsPlugin(type, externals) {
	this.type = type;
	this.externals = externals;
}
module.exports = ExternalsPlugin;
ExternalsPlugin.prototype.apply = function(compiler) {
	compiler.plugin("compile", function(params) {
		params.normalModuleFactory.apply(new ExternalModuleFactoryPlugin(this.type, this.externals));
	}.bind(this));
};
back to top