2014-10-09 06:53:05 +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 NewWatchingPlugin() {}
|
2014-10-09 06:53:05 +08:00
|
|
|
module.exports = NewWatchingPlugin;
|
|
|
|
|
|
|
|
NewWatchingPlugin.prototype.apply = function(compiler) {
|
2015-01-18 04:55:44 +08:00
|
|
|
compiler.plugin("compilation", function(compilation) {
|
|
|
|
compilation.warnings.push(new Error("The 'NewWatchingPlugin' is no longer necessary (now default)"));
|
2014-10-09 06:53:05 +08:00
|
|
|
});
|
|
|
|
};
|