From 65bf69fb2a2ade17e53004cce65f82b775577c7d Mon Sep 17 00:00:00 2001 From: Jaime Idolpx Date: Sun, 14 Jun 2026 16:15:00 -0400 Subject: [PATCH] fix(gzip-dist): add support for .wasm files in gzip processing --- scripts/gzip-dist.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gzip-dist.mjs b/scripts/gzip-dist.mjs index a4172ca..8393777 100644 --- a/scripts/gzip-dist.mjs +++ b/scripts/gzip-dist.mjs @@ -4,7 +4,7 @@ import { extname, join } from 'node:path'; import { pipeline } from 'node:stream/promises'; import { createGzip } from 'node:zlib'; -const EXTS = new Set(['.html', '.js', '.css', '.svg']); +const EXTS = new Set(['.html', '.js', '.css', '.svg', ".wasm"]); const DIST = 'dist'; async function* walk(dir) {