webpack/lib/SingleEntryPlugin.js

31 lines
804 B
JavaScript
Raw Normal View History

2013-01-31 01:49:25 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const SingleEntryDependency = require("./dependencies/SingleEntryDependency");
2013-01-31 01:49:25 +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
}
module.exports = SingleEntryPlugin