From 9bce51f651aad297ef9eb6df832bfdaf1de05d84 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期三, 22 四月 2026 14:27:54 +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