31e4ea1db5cee3a418afed79d4dee7e76acec04b201dda740aa806616455f9cbf18754d0251f07fbf60b35746c66a655bf13fe0873a51c9aff4aeaac2e526b 401 B

123456789101112131415161718
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. class WebEnvironmentPlugin {
  7. constructor(inputFileSystem, outputFileSystem) {
  8. this.inputFileSystem = inputFileSystem;
  9. this.outputFileSystem = outputFileSystem;
  10. }
  11. apply(compiler) {
  12. compiler.outputFileSystem = this.outputFileSystem;
  13. }
  14. }
  15. module.exports = WebEnvironmentPlugin;