Sha256: f057e2d9dc9860ec4398918c17ac714462591916d5eeed9f7818c8086ce2de5d
Contents?: true
Size: 385 Bytes
Versions: 11
Compression:
Stored size: 385 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; class NewWatchingPlugin { apply(compiler) { compiler.plugin("compilation", function(compilation) { compilation.warnings.push(new Error("The 'NewWatchingPlugin' is no longer necessary (now default)")); }); } } module.exports = NewWatchingPlugin;
Version data entries
11 entries across 7 versions & 4 rubygems