Skip to content

Commit 9759650

Browse files
committed
obsolete
1 parent f3213f2 commit 9759650

File tree

2 files changed

+1
-23
lines changed

2 files changed

+1
-23
lines changed

lib/node/NodeEnvironmentPlugin.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,15 @@
22
MIT License http://www.opensource.org/licenses/mit-license.php
33
Author Tobias Koppers @sokra
44
*/
5-
var NodeSubProcessExecutor = require("./NodeSubProcessExecutor");
65
var NodeWatchFileSystem = require("./NodeWatchFileSystem");
76
var NodeOutputFileSystem = require("./NodeOutputFileSystem");
87
var NodeJsInputFileSystem = require("enhanced-resolve/lib/NodeJsInputFileSystem");
98
var CachedInputFileSystem = require("enhanced-resolve/lib/CachedInputFileSystem");
109

11-
function NodeEnvironmentPlugin(separate) {
12-
this.separate = separate;
10+
function NodeEnvironmentPlugin() {
1311
}
1412
module.exports = NodeEnvironmentPlugin;
1513
NodeEnvironmentPlugin.prototype.apply = function(compiler) {
16-
if(this.separate && NodeSubProcessExecutor.availible()) {
17-
compiler.separateExecutor = new NodeSubProcessExecutor(this.separate);
18-
}
1914
compiler.inputFileSystem = new NodeJsInputFileSystem();
2015
compiler.inputFileSystem = new CachedInputFileSystem(compiler.inputFileSystem, 6000);
2116
compiler.resolvers.normal.fileSystem = compiler.inputFileSystem;

lib/node/NodeSubProcessExecutor.js

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)