From 00c62fa49451f0fc2c3bb65fdeb2eee361bcd9e4 Mon Sep 17 00:00:00 2001 From: mikiher Date: Wed, 8 Oct 2025 17:42:00 +0300 Subject: [PATCH] Add a script to build an uncompressed windows executable --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 34abc60ef..00168f25c 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "client": "cd client && npm ci && npm run generate", "prod": "npm run client && npm ci && node index.js", "build-win": "npm run client && pkg -t node20-win-x64 -o ./dist/win/audiobookshelf -C GZip .", + "build-win-no-compress": "npm run client && pkg -t node20-win-x64 -o ./dist/win/audiobookshelf .", "build-linux": "build/linuxpackager", "docker": "docker buildx build --platform linux/amd64,linux/arm64 --push . -t advplyr/audiobookshelf", "docker-amd64-local": "docker buildx build --platform linux/amd64 --load . -t advplyr/audiobookshelf-amd64-local",