aswi2020vldc-gitlab/templetes/node_modules/webpack/lib/WarnNoModeSetPlugin.js @ 9bb1e829
1 |
/*
|
---|---|
2 |
MIT License http://www.opensource.org/licenses/mit-license.php
|
3 |
Author Tobias Koppers @sokra
|
4 |
*/
|
5 |
"use strict"; |
6 |
|
7 |
const NoModeWarning = require("./NoModeWarning"); |
8 |
|
9 |
class WarnNoModeSetPlugin { |
10 |
apply(compiler) { |
11 |
compiler.hooks.thisCompilation.tap("WarnNoModeSetPlugin", compilation => { |
12 |
compilation.warnings.push(new NoModeWarning()); |
13 |
});
|
14 |
}
|
15 |
}
|
16 |
|
17 |
module.exports = WarnNoModeSetPlugin; |