mirror of https://github.com/webpack/webpack.git
22 lines
773 B
JavaScript
22 lines
773 B
JavaScript
|
/*
|
||
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
||
|
Author Tobias Koppers @sokra
|
||
|
*/
|
||
|
var SingleEntryDependency = require("./dependencies/SingleEntryDependency");
|
||
|
|
||
|
function SingleEntryPlugin(context, entry, name) {
|
||
|
this.context = context;
|
||
|
this.entry = entry;
|
||
|
this.name = name;
|
||
|
}
|
||
|
module.exports = SingleEntryPlugin;
|
||
|
SingleEntryPlugin.prototype.apply = function(compiler) {
|
||
|
compiler.plugin("compilation", function(compilation, params) {
|
||
|
var normalModuleFactory = params.normalModuleFactory;
|
||
|
|
||
|
compilation.dependencyFactories.set(SingleEntryDependency, normalModuleFactory);
|
||
|
});
|
||
|
compiler.plugin("make", function(compilation, callback) {
|
||
|
compilation.addEntry(this.context, new SingleEntryDependency(this.entry), this.name, callback);
|
||
|
}.bind(this));
|
||
|
};
|