Skip to content

Commit 1903fc0

Browse files
committed
Improve compression when publishing package
Increasing the number of iterations shaves off several more bytes.
1 parent 70660df commit 1903fc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/build-package.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ async function postPackCrush(originalTarGz: string): Promise<string> {
338338
const crushedTarGz = originalTarGz.replace(".tgz", ".crushed.tgz");
339339
const readOriginal = fsOriginal.createReadStream(originalTarGz);
340340
const gunzip = zlib.createGunzip();
341-
const gzip = zopfli.createGzip({ numiterations: 15 });
341+
const gzip = zopfli.createGzip({ numiterations: 100 });
342342
const writeCrushed = fsOriginal.createWriteStream(crushedTarGz);
343343

344344
await pipe(readOriginal, gunzip, gzip, writeCrushed);

0 commit comments

Comments
 (0)