2014-10-09 06:53:05 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2016-12-30 00:10:41 +08:00
|
|
|
"use strict";
|
2016-12-29 15:07:27 +08:00
|
|
|
|
|
|
|
class NewWatchingPlugin {
|
|
|
|
apply(compiler) {
|
|
|
|
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
|
|
|
|
2016-12-29 15:07:27 +08:00
|
|
|
module.exports = NewWatchingPlugin;
|