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) {
|
2017-12-08 15:00:32 +08:00
|
|
|
compiler.hooks.compilation.tap("SingleEntryPlugin", (compilation, {
|
|
|
|
normalModuleFactory
|
|
|
|
}) => {
|
2017-01-04 12:18:43 +08:00
|
|
|
compilation.dependencyFactories.set(SingleEntryDependency, normalModuleFactory);
|
|
|
|
});
|
|
|
|
|
2017-12-08 15:00:32 +08:00
|
|
|
compiler.hooks.make.tapAsync("SingleEntryPlugin", (compilation, callback) => {
|
|
|
|
const {
|
|
|
|
entry,
|
|
|
|
name,
|
|
|
|
context
|
|
|
|
} = this;
|
|
|
|
|
|
|
|
const dep = SingleEntryPlugin.createDependency(entry, name);
|
|
|
|
compilation.addEntry(context, dep, name, callback);
|
2017-01-04 12:18:43 +08:00
|
|
|
});
|
|
|
|
}
|
2017-01-09 15:31:49 +08:00
|
|
|
|
|
|
|
static createDependency(entry, name) {
|
|
|
|
const dep = new SingleEntryDependency(entry);
|
|
|
|
dep.loc = name;
|
|
|
|
return dep;
|
|
|
|
}
|
2013-01-31 01:49:25 +08:00
|
|
|
}
|
|
|
|
|
2017-01-11 17:51:58 +08:00
|
|
|
module.exports = SingleEntryPlugin;
|