fix(release): allow larger plugin publication manifests (#105800)

This commit is contained in:
Vincent Koc
2026-07-13 08:55:23 +08:00
committed by GitHub
parent fe0a6db2b4
commit 5c49055293
2 changed files with 2 additions and 2 deletions

View File

@@ -1090,7 +1090,7 @@ describe("plugin publication artifact", () => {
it("caps publication JSON and tarball members before ZIP expansion", () => {
const fixture = createFixture();
const manifest = readFileSync(fixture.created.manifestPath);
const oversizedManifest = Buffer.alloc(2 * 1024 * 1024 + 1, 0x20);
const oversizedManifest = Buffer.alloc(4 * 1024 * 1024 + 1, 0x20);
replaceArtifactZip(fixture, [
{ bytes: fixture.tarball, name: TARBALL_NAME },