From 8df7401e0631e42875c39fa96fef271fe9515700 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard <62331820+DanielHougaard@users.noreply.github.com> Date: Fri, 28 Jun 2024 20:58:52 +0200 Subject: [PATCH] Remove compression and separate packaging --- backend/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/package.json b/backend/package.json index f3b1acb6d0..ebb9d7c331 100644 --- a/backend/package.json +++ b/backend/package.json @@ -25,8 +25,8 @@ "outputPath": "binary" }, "scripts": { - "binary:build": "npm run binary:clean && npm run build:frontend && npm run build && npm run binary:babel-frontend && npm run binary:babel-backend && npm run binary:rename-imports && npm run binary:package", - "binary:package": "pkg --no-bytecode --public-packages \"*\" --compress=Brotli --public --target node18-macos-arm64 .", + "binary:build": "npm run binary:clean && npm run build:frontend && npm run build && npm run binary:babel-frontend && npm run binary:babel-backend && npm run binary:rename-imports", + "binary:package": "pkg --no-bytecode --public-packages \"*\" --public --target node18-macos-arm64 .", "binary:babel-backend": " babel ./dist -d ./dist", "binary:babel-frontend": "babel --copy-files ../frontend/.next/server -d ../frontend/.next/server",