From ef860862cb909eccc12bab19c9a7fb7aef02a33b Mon Sep 17 00:00:00 2001 From: Roman Axelrod Date: Tue, 28 Apr 2026 17:07:42 -0600 Subject: [PATCH] fix: exclude archives from bridgeable output --- src/file-rules.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/file-rules.js b/src/file-rules.js index d92af87..19f9175 100644 --- a/src/file-rules.js +++ b/src/file-rules.js @@ -29,6 +29,7 @@ export const shouldCopyFile = (name) => { return ![ '.css', + '.gz', '.gif', '.jpeg', '.jpg', @@ -38,7 +39,8 @@ export const shouldCopyFile = (name) => { '.svg', '.webp', '.woff', - '.woff2' + '.woff2', + '.zip' ].includes(extname(name)); };