webpack/lib/node/NodeEnvironmentPlugin.js

64 lines
1.9 KiB
JavaScript
Raw Normal View History

2013-01-31 01:49:25 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
2018-07-30 23:08:51 +08:00
"use strict";
2013-01-31 01:49:25 +08:00
const CachedInputFileSystem = require("enhanced-resolve/lib/CachedInputFileSystem");
const fs = require("graceful-fs");
const createConsoleLogger = require("../logging/createConsoleLogger");
2018-07-30 23:08:51 +08:00
const NodeWatchFileSystem = require("./NodeWatchFileSystem");
const nodeConsole = require("./nodeConsole");
/** @typedef {import("../../declarations/WebpackOptions").InfrastructureLogging} InfrastructureLogging */
2018-11-09 05:59:19 +08:00
/** @typedef {import("../Compiler")} Compiler */
class NodeEnvironmentPlugin {
/**
* @param {Object} options options
* @param {InfrastructureLogging} options.infrastructureLogging infrastructure logging options
*/
constructor(options) {
this.options = options;
}
2018-11-09 05:59:19 +08:00
/**
2020-04-23 16:48:36 +08:00
* Apply the plugin
2018-11-09 05:59:19 +08:00
* @param {Compiler} compiler the compiler instance
* @returns {void}
*/
apply(compiler) {
const { infrastructureLogging } = this.options;
compiler.infrastructureLogger = createConsoleLogger({
level: infrastructureLogging.level || "info",
debug: infrastructureLogging.debug || false,
console:
infrastructureLogging.console ||
nodeConsole({
colors: infrastructureLogging.colors,
appendOnly: infrastructureLogging.appendOnly,
stream: infrastructureLogging.stream
})
});
2019-07-05 06:41:30 +08:00
compiler.inputFileSystem = new CachedInputFileSystem(fs, 60000);
const inputFileSystem = compiler.inputFileSystem;
compiler.outputFileSystem = fs;
compiler.intermediateFileSystem = fs;
2018-02-25 09:00:20 +08:00
compiler.watchFileSystem = new NodeWatchFileSystem(
compiler.inputFileSystem
);
compiler.hooks.beforeRun.tap("NodeEnvironmentPlugin", compiler => {
2024-03-05 21:37:51 +08:00
if (
compiler.inputFileSystem === inputFileSystem &&
inputFileSystem.purge
) {
2021-05-21 00:20:12 +08:00
compiler.fsStartTime = Date.now();
2018-11-09 05:59:19 +08:00
inputFileSystem.purge();
}
});
}
}
2018-11-09 05:59:19 +08:00
2013-01-31 01:49:25 +08:00
module.exports = NodeEnvironmentPlugin;