From 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期二, 21 四月 2026 11:46:41 +0800
Subject: [PATCH] 推送
---
node_modules/webpack/lib/Stats.js | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/node_modules/webpack/lib/Stats.js b/node_modules/webpack/lib/Stats.js
index a90af48..322ddda 100644
--- a/node_modules/webpack/lib/Stats.js
+++ b/node_modules/webpack/lib/Stats.js
@@ -6,11 +6,13 @@
"use strict";
/** @typedef {import("../declarations/WebpackOptions").StatsOptions} StatsOptions */
+/** @typedef {import("../declarations/WebpackOptions").StatsValue} StatsValue */
/** @typedef {import("./Compilation")} Compilation */
/** @typedef {import("./stats/DefaultStatsFactoryPlugin").StatsCompilation} StatsCompilation */
class Stats {
/**
+ * Creates an instance of Stats.
* @param {Compilation} compilation webpack compilation
*/
constructor(compilation) {
@@ -30,6 +32,7 @@
}
/**
+ * Checks whether this stats has warnings.
* @returns {boolean} true if the compilation had a warning
*/
hasWarnings() {
@@ -40,6 +43,7 @@
}
/**
+ * Checks whether this stats has errors.
* @returns {boolean} true if the compilation encountered an error
*/
hasErrors() {
@@ -50,7 +54,8 @@
}
/**
- * @param {(string | boolean | StatsOptions)=} options stats options
+ * Returns json output.
+ * @param {StatsValue=} options stats options
* @returns {StatsCompilation} json output
*/
toJson(options) {
@@ -66,7 +71,8 @@
}
/**
- * @param {(string | boolean | StatsOptions)=} options stats options
+ * Returns a string representation.
+ * @param {StatsValue=} options stats options
* @returns {string} string output
*/
toString(options) {
--
Gitblit v1.9.3