Files
klz-cables.com/.pnpm-store/v10/files/3b/0d14c0c0d48872f30d8c11b3dd9522b32193fbb45c718a336143a61cb656152fb9c7fa112e669411506a77aa8e2078be40faff21998bf6c26d22f2447c94d9
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

30 lines
638 B
Plaintext

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const WebpackError = require("../WebpackError");
const makeSerializable = require("../util/makeSerializable");
class CriticalDependencyWarning extends WebpackError {
/**
* @param {string} message message
*/
constructor(message) {
super();
/** @type {string} */
this.name = "CriticalDependencyWarning";
this.message = `Critical dependency: ${message}`;
}
}
makeSerializable(
CriticalDependencyWarning,
"webpack/lib/dependencies/CriticalDependencyWarning"
);
module.exports = CriticalDependencyWarning;