2013-06-12 22:16:06 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2015-07-13 06:20:09 +08:00
|
|
|
function DedupePlugin() {}
|
2013-06-12 22:16:06 +08:00
|
|
|
module.exports = DedupePlugin;
|
|
|
|
|
|
|
|
DedupePlugin.prototype.apply = function(compiler) {
|
|
|
|
compiler.plugin("compilation", function(compilation) {
|
2016-11-10 15:52:00 +08:00
|
|
|
compilation.warnings.push(new Error("DedupePlugin: This plugin was removed from webpack. remove it from configuration."));
|
2013-12-18 06:21:49 +08:00
|
|
|
});
|
2013-06-12 22:16:06 +08:00
|
|
|
};
|