Sha256: 0fd96c3830f425181b8de4246b33b2c6778ab0ae51eed086d89580674b32c0f5
Contents?: true
Size: 391 Bytes
Versions: 29
Compression:
Stored size: 391 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const NoModeWarning = require("./NoModeWarning"); class WarnNoModeSetPlugin { apply(compiler) { compiler.hooks.thisCompilation.tap("WarnNoModeSetPlugin", compilation => { compilation.warnings.push(new NoModeWarning()); }); } } module.exports = WarnNoModeSetPlugin;
Version data entries
29 entries across 28 versions & 10 rubygems