diff --git a/build/delete-default-app.js b/build/delete-default-app.js new file mode 100644 index 0000000..b600415 --- /dev/null +++ b/build/delete-default-app.js @@ -0,0 +1,10 @@ +const fs = require('fs'); +const dir = './dist/win-ia32-unpacked/resources/default_app' + +exports.default = async function(context) { + fs.rmdir(dir, { recursive: true }, (err) => { + if (err) { + throw err; + } + }); +} \ No newline at end of file diff --git a/package.json b/package.json index ff67dde..5be293a 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,8 @@ "postinstall": "npx patch-package && npm explore electron-prebuilt -- npm run postinstall", "start": "electron .", "build": "node build.js", - "pack": "electron-builder --dir", - "dist": "electron-builder" + "pack": "electron-builder --win --ia32 --dir", + "dist": "electron-builder --win --ia32" }, "author": "OpenFusion Contributors", "license": "MIT", @@ -17,6 +17,10 @@ "patch-package": "^6.4.7", "electron-builder": "^22.10.5" }, + "repository": { + "type": "git", + "url": "https://github.com/OpenFusionProject/Client.git" + }, "build": { "appId": "xyz.openfusion.client", "productName": "OpenFusionClient", @@ -28,11 +32,20 @@ }, "electronVersion": "0.31.2", "win": { - "asar": false + "asar": false, + "target": [ + { + "target": "nsis", + "arch": "ia32" + }, + { + "target": "zip", + "arch": "ia32" + } + ] }, "files": [ "!patches${/*}", - "!default_app${/*}", "!.npmrc" ], "extraFiles": [ @@ -40,7 +53,8 @@ "from": "build/utils", "to": "utils" } - ] + ], + "afterPack": "./build/delete-default-app.js" }, "dependencies": { "fs-extra": "^0.30.0"