mirror of https://github.com/webpack/webpack.git
13 lines
394 B
JavaScript
13 lines
394 B
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
function NewWatchingPlugin() {}
|
|
module.exports = NewWatchingPlugin;
|
|
|
|
NewWatchingPlugin.prototype.apply = function(compiler) {
|
|
compiler.plugin("compilation", function(compilation) {
|
|
compilation.warnings.push(new Error("The 'NewWatchingPlugin' is no longer necessary (now default)"));
|
|
});
|
|
};
|