Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- /*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
- */
- "use strict";
-
- class WebEnvironmentPlugin {
- constructor(inputFileSystem, outputFileSystem) {
- this.inputFileSystem = inputFileSystem;
- this.outputFileSystem = outputFileSystem;
- }
-
- apply(compiler) {
- compiler.outputFileSystem = this.outputFileSystem;
- }
- }
-
- module.exports = WebEnvironmentPlugin;
|