2013-01-31 01:49:25 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2017-01-04 12:18:43 +08:00
|
|
|
"use strict";
|
|
|
|
const SingleEntryDependency = require("./dependencies/SingleEntryDependency");
|
2013-01-31 01:49:25 +08:00
|
|
|
|
2017-01-04 12:18:43 +08:00
|
|
|
class SingleEntryPlugin {
|
|
|
|
constructor(context, entry, name) {
|
|
|
|
this.context = context;
|
|
|
|
this.entry = entry;
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
apply(compiler) {
|
|
|
|
compiler.plugin("compilation", (compilation, params) => {
|
|
|
|
const normalModuleFactory = params.normalModuleFactory;
|
|
|
|
|
|
|
|
compilation.dependencyFactories.set(SingleEntryDependency, normalModuleFactory);
|
|
|
|
});
|
|
|
|
|
|
|
|
compiler.plugin("make", (compilation, callback) => {
|
|
|
|
const dep = new SingleEntryDependency(this.entry);
|
|
|
|
dep.loc = this.name;
|
|
|
|
compilation.addEntry(this.context, dep, this.name, callback);
|
|
|
|
});
|
|
|
|
}
|
2013-01-31 01:49:25 +08:00
|
|
|
}
|
|
|
|
|
2017-01-04 12:18:43 +08:00
|
|
|
module.exports = SingleEntryPlugin
|