Files
klz-cables.com/.pnpm-store/v10/files/26/a073629af17a9f8be9f5049531255e43269755da78ff0c17fdba7a43e111670259c83fa5968bfa6468a32436366e7df208a4793f0ccd11b97f0bef4c08a4b7
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

17 lines
1.2 KiB
Plaintext

import { SentryBuildPluginManager } from "./build-plugin-manager";
import { Logger } from "./logger";
import { ResolveSourceMapHook, RewriteSourcesHook } from "./types";
interface DebugIdUploadPluginOptions {
sentryBuildPluginManager: SentryBuildPluginManager;
}
export declare function createDebugIdUploadFunction({ sentryBuildPluginManager, }: DebugIdUploadPluginOptions): (buildArtifactPaths: string[]) => Promise<void>;
export declare function prepareBundleForDebugIdUpload(bundleFilePath: string, uploadFolder: string, chunkIndex: number, logger: Logger, rewriteSourcesHook: RewriteSourcesHook, resolveSourceMapHook: ResolveSourceMapHook | undefined): Promise<void>;
/**
* Applies a set of heuristics to find the source map for a particular bundle.
*
* @returns the path to the bundle's source map or `undefined` if none could be found.
*/
export declare function determineSourceMapPathFromBundle(bundlePath: string, bundleSource: string, logger: Logger, resolveSourceMapHook: ResolveSourceMapHook | undefined): Promise<string | undefined>;
export declare function defaultRewriteSourcesHook(source: string): string;
export {};
//# sourceMappingURL=debug-id-upload.d.ts.map