fix(docker): prune external plugin dist (#77547)

This commit is contained in:
Vincent Koc
2026-05-04 15:11:14 -07:00
committed by GitHub
parent 8ee08b2b77
commit 7e229f0d3d
6 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export function parseDockerPluginKeepList(value: unknown): Set<string>;
export function pruneDockerPluginDist(params?: {
cwd?: string;
repoRoot?: string;
env?: NodeJS.ProcessEnv;
}): string[];