commit node_modules and generated files
This commit is contained in:
parent
6d7a135fea
commit
34b372292b
3379 changed files with 449603 additions and 2029 deletions
29
node_modules/webpack/lib/optimize/MinMaxSizeWarning.js
generated
vendored
Normal file
29
node_modules/webpack/lib/optimize/MinMaxSizeWarning.js
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
MIT License http://www.opensource.org/licenses/mit-license.php
|
||||
Author Tobias Koppers @sokra
|
||||
*/
|
||||
"use strict";
|
||||
|
||||
const WebpackError = require("../WebpackError");
|
||||
const SizeFormatHelpers = require("../SizeFormatHelpers");
|
||||
|
||||
class MinMaxSizeWarning extends WebpackError {
|
||||
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 optimiziation.splitChunks configuration."
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = MinMaxSizeWarning;
|
||||
Loading…
Add table
Add a link
Reference in a new issue