webpack/lib/node/NodeEnvironmentPlugin.js

73 lines
2.1 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
2024-03-11 22:06:28 +08:00
const CachedInputFileSystem = require("enhanced-resolve").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 */
2024-03-11 22:06:28 +08:00
/** @typedef {import("../util/fs").InputFileSystem} InputFileSystem */
2018-11-09 05:59:19 +08:00
/**
* @typedef {object} NodeEnvironmentPluginOptions
* @property {InfrastructureLogging} infrastructureLogging infrastructure logging options
*/
2025-04-23 20:03:37 +08:00
const PLUGIN_NAME = "NodeEnvironmentPlugin";
class NodeEnvironmentPlugin {
/**
* @param {NodeEnvironmentPluginOptions} options 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,
2024-03-11 22:56:35 +08:00
stream:
/** @type {NodeJS.WritableStream} */
(infrastructureLogging.stream)
})
});
2019-07-05 06:41:30 +08:00
compiler.inputFileSystem = new CachedInputFileSystem(fs, 60000);
2024-03-11 22:06:28 +08:00
const inputFileSystem =
/** @type {InputFileSystem} */
(compiler.inputFileSystem);
compiler.outputFileSystem = fs;
compiler.intermediateFileSystem = fs;
2024-03-11 22:06:28 +08:00
compiler.watchFileSystem = new NodeWatchFileSystem(inputFileSystem);
2025-04-23 20:03:37 +08:00
compiler.hooks.beforeRun.tap(PLUGIN_NAME, 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;