Skip to content

Commit

Permalink
multi-arch build
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex313031 committed Mar 19, 2024
1 parent b7169d2 commit 604d68c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion electron-builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
},
"win": {
"target": ["zip", "portable", "nsis"],
"arch": ["x64", "ia32"],
"icon": "build/icon.ico",
"publisherName": "Alex313031",
"executableName": "ArmCord",
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
"startKeybindManager": "npm run build && electron ./ts-out/main.js keybinds",
"startWayland": "npm run build && electron ./ts-out/main.js --ozone-platform-hint=auto --enable-features=WebRTCPipeWireCapturer,WaylandWindowDecorations",
"package": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"distLinux": "npm run build && electron-builder -l --x64 && electron-builder -l --arm64",
"distWin": "npm run build && electron-builder -w --x64 && electron-builder -w --ia32",
"distMac": "npm run build && electron-builder -m --x64 && electron-builder -m --arm64",
"format": "prettier --write src *.json",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"CIbuild": "npm run build && electron-builder --linux zip && electron-builder --windows zip && electron-builder --macos zip",
Expand Down

0 comments on commit 604d68c

Please sign in to comment.