This commit is contained in:
Alex Yang
2026-03-30 01:04:46 +08:00
parent 050aa421b1
commit f627244b8f
5978 changed files with 1502187 additions and 2947 deletions
@@ -0,0 +1,40 @@
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Sean Larkin @thelarkinn
*/
"use strict";
const { formatSize } = require("../SizeFormatHelpers");
const WebpackError = require("../WebpackError");
/** @typedef {import("./SizeLimitsPlugin").EntrypointDetails} EntrypointDetails */
class EntrypointsOverSizeLimitWarning extends WebpackError {
/**
* @param {EntrypointDetails[]} entrypoints the entrypoints
* @param {number} entrypointLimit the size limit
*/
constructor(entrypoints, entrypointLimit) {
const entrypointList = entrypoints
.map(
(entrypoint) =>
`\n ${entrypoint.name} (${formatSize(
entrypoint.size
)})\n${entrypoint.files.map((asset) => ` ${asset}`).join("\n")}`
)
.join("");
super(`entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (${formatSize(
entrypointLimit
)}). This can impact web performance.
Entrypoints:${entrypointList}\n`);
/** @type {string} */
this.name = "EntrypointsOverSizeLimitWarning";
/** @type {EntrypointDetails[]} */
this.entrypoints = entrypoints;
}
}
/** @type {typeof EntrypointsOverSizeLimitWarning} */
module.exports = EntrypointsOverSizeLimitWarning;