From bc6f95ce1d86f8d5ad5dd29cc348bba97a9f3b43 Mon Sep 17 00:00:00 2001 From: Pierre Marx Date: Fri, 5 Sep 2025 10:19:20 -0400 Subject: [PATCH] chore: Simplifier la configuration de build Linux MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Garder uniquement AppImage comme target pour Linux - Supprimer les targets deb et rpm non nécessaires - Architecture x64 uniquement pour le moment --- package.json | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index fe30426..57b53b2 100644 --- a/package.json +++ b/package.json @@ -53,15 +53,9 @@ "target": [ { "target": "AppImage", - "arch": ["x64", "arm64"] - }, - { - "target": "deb", - "arch": ["x64", "arm64"] - }, - { - "target": "rpm", - "arch": ["x64", "arm64"] + "arch": [ + "x64" + ] } ], "icon": "icon.png", @@ -94,4 +88,4 @@ "@microsoft/signalr": "^9.0.6", "choices.js": "^11.1.0" } -} +} \ No newline at end of file