From 2c4a977b4a2fcbe8fe39b373ed3a2cbc70448235 Mon Sep 17 00:00:00 2001 From: Cody Seibert Date: Thu, 11 Dec 2025 22:59:29 -0500 Subject: [PATCH] chore: update package.json to enhance build configuration - Added `artifactName` template for output files. - Set `executableName` for the application to improve clarity in the build process. --- apps/app/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/app/package.json b/apps/app/package.json index 74431590..b2bc156f 100644 --- a/apps/app/package.json +++ b/apps/app/package.json @@ -78,6 +78,7 @@ "build": { "appId": "com.automaker.app", "productName": "Automaker", + "artifactName": "${productName}-${version}-${arch}.${ext}", "directories": { "output": "dist" }, @@ -145,7 +146,8 @@ ], "category": "Development", "icon": "public/logo_larger.png", - "maintainer": "webdevcody@gmail.com" + "maintainer": "webdevcody@gmail.com", + "executableName": "automaker" }, "nsis": { "oneClick": false,