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
|
|
|
|
2017-01-06 13:02:52 +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;
|
2019-06-11 19:09:42 +08:00
|
|
|
const fs = require("graceful-fs");
|
2019-07-22 14:23:40 +08:00
|
|
|
const createConsoleLogger = require("../logging/createConsoleLogger");
|
2018-07-30 23:08:51 +08:00
|
|
|
const NodeWatchFileSystem = require("./NodeWatchFileSystem");
|
2019-07-28 01:48:10 +08:00
|
|
|
const nodeConsole = require("./nodeConsole");
|
2017-01-06 13:02:52 +08:00
|
|
|
|
2021-04-06 21:20:27 +08:00
|
|
|
/** @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
|
|
|
|
2025-04-03 00:02:22 +08:00
|
|
|
/**
|
|
|
|
* @typedef {object} NodeEnvironmentPluginOptions
|
|
|
|
* @property {InfrastructureLogging} infrastructureLogging infrastructure logging options
|
|
|
|
*/
|
|
|
|
|
2025-04-23 20:03:37 +08:00
|
|
|
const PLUGIN_NAME = "NodeEnvironmentPlugin";
|
|
|
|
|
2017-01-06 13:02:52 +08:00
|
|
|
class NodeEnvironmentPlugin {
|
2021-04-06 21:20:27 +08:00
|
|
|
/**
|
2025-04-03 00:02:22 +08:00
|
|
|
* @param {NodeEnvironmentPluginOptions} options options
|
2021-04-06 21:20:27 +08:00
|
|
|
*/
|
2019-07-22 14:23:40 +08:00
|
|
|
constructor(options) {
|
2021-04-06 21:20:27 +08:00
|
|
|
this.options = options;
|
2019-07-22 14:23:40 +08:00
|
|
|
}
|
|
|
|
|
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}
|
|
|
|
*/
|
2017-01-06 13:02:52 +08:00
|
|
|
apply(compiler) {
|
2021-04-06 21:20:27 +08:00
|
|
|
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)
|
2021-04-06 21:20:27 +08:00
|
|
|
})
|
|
|
|
});
|
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);
|
2019-06-11 19:09:42 +08:00
|
|
|
compiler.outputFileSystem = fs;
|
|
|
|
compiler.intermediateFileSystem = fs;
|
2024-03-11 22:06:28 +08:00
|
|
|
compiler.watchFileSystem = new NodeWatchFileSystem(inputFileSystem);
|
2025-07-17 00:13:14 +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();
|
|
|
|
}
|
2017-01-06 13:02:52 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2018-11-09 05:59:19 +08:00
|
|
|
|
2013-01-31 01:49:25 +08:00
|
|
|
module.exports = NodeEnvironmentPlugin;
|