Files
rspade_system/node_modules/webpack/lib/optimize/MinMaxSizeWarning.js
root f6fac6c4bc Fix bin/publish: copy docs.dist from project root
Fix bin/publish: use correct .env path for rspade_system
Fix bin/publish script: prevent grep exit code 1 from terminating script

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-21 02:08:33 +00:00

36 lines
955 B
JavaScript
Executable File

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const SizeFormatHelpers = require("../SizeFormatHelpers");
const WebpackError = require("../WebpackError");
class MinMaxSizeWarning extends WebpackError {
/**
* @param {string[] | undefined} keys keys
* @param {number} minSize minimum size
* @param {number} maxSize maximum size
*/
constructor(keys, minSize, maxSize) {
let keysMessage = "Fallback cache group";
if (keys) {
keysMessage =
keys.length > 1
? `Cache groups ${keys.sort().join(", ")}`
: `Cache group ${keys[0]}`;
}
super(
"SplitChunksPlugin\n" +
`${keysMessage}\n` +
`Configured minSize (${SizeFormatHelpers.formatSize(minSize)}) is ` +
`bigger than maxSize (${SizeFormatHelpers.formatSize(maxSize)}).\n` +
"This seem to be a invalid optimization.splitChunks configuration."
);
}
}
module.exports = MinMaxSizeWarning;