Files
klz-cables.com/.pnpm-store/v10/files/92/85a8fb247f3ed61123204e0f3b02c3768dec1d550f2bd86e23bfc1bdd0691d6115baad48fd1698e98e1b422ceea1c8d94c3aa443bde5c315a78cff9df0e7d8
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

34 lines
1.2 KiB
Plaintext

import { Options, sentryUnpluginFactory } from "@sentry/bundler-plugin-core";
type UnsafeBannerPlugin = {
new (options: any): unknown;
};
type UnsafeDefinePlugin = {
new (options: any): unknown;
};
/**
* The factory function accepts BannerPlugin and DefinePlugin classes in
* order to avoid direct dependencies on webpack.
*
* This allow us to export version of the plugin for webpack 5.1+ and compatible environments.
*
* Since webpack 5.1 compiler contains webpack module so plugins always use correct webpack version.
*/
export declare function sentryWebpackUnpluginFactory({ BannerPlugin, DefinePlugin, }?: {
BannerPlugin?: UnsafeBannerPlugin;
DefinePlugin?: UnsafeDefinePlugin;
}): ReturnType<typeof sentryUnpluginFactory>;
export type SentryWebpackPluginOptions = Options & {
_experiments?: Options["_experiments"] & {
/**
* If enabled, the webpack plugin will exit the build process after the build completes.
* Use this with caution, as it will terminate the process.
*
* More information: https://github.com/getsentry/sentry-javascript-bundler-plugins/issues/345
*
* @default false
*/
forceExitOnBuildCompletion?: boolean;
};
};
export {};