From 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期三, 22 四月 2026 18:09:58 +0800
Subject: [PATCH] 上报转运调试

---
 node_modules/webpack/lib/serialization/AggregateErrorSerializer.js |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/node_modules/webpack/lib/serialization/AggregateErrorSerializer.js b/node_modules/webpack/lib/serialization/AggregateErrorSerializer.js
index 82ec431..7631267 100644
--- a/node_modules/webpack/lib/serialization/AggregateErrorSerializer.js
+++ b/node_modules/webpack/lib/serialization/AggregateErrorSerializer.js
@@ -7,10 +7,11 @@
 /** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
 /** @typedef {import("./ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
 
-/** @typedef {Error & { cause: unknown, errors: EXPECTED_ANY[] }} AggregateError */
+/** @typedef {Error & { cause?: unknown, errors: EXPECTED_ANY[] }} AggregateError */
 
 class AggregateErrorSerializer {
 	/**
+	 * Serializes this instance into the provided serializer context.
 	 * @param {AggregateError} obj error
 	 * @param {ObjectSerializerContext} context context
 	 */
@@ -22,12 +23,12 @@
 	}
 
 	/**
+	 * Restores this instance from the provided deserializer context.
 	 * @param {ObjectDeserializerContext} context context
 	 * @returns {AggregateError} error
 	 */
 	deserialize(context) {
 		const errors = context.read();
-		// @ts-expect-error ES2018 doesn't `AggregateError`, but it can be used by developers
 		// eslint-disable-next-line n/no-unsupported-features/es-builtins, n/no-unsupported-features/es-syntax, unicorn/error-message
 		const err = new AggregateError(errors);
 

--
Gitblit v1.9.3