electron-winstaller
Advanced tools
Comparing version 5.2.0 to 5.2.1
@@ -102,3 +102,3 @@ "use strict"; | ||
monoExe = 'mono'; | ||
wineExe = process.arch === 'x64' ? 'wine64' : 'wine'; | ||
wineExe = ['arm64', 'x64'].includes(process.arch) ? 'wine64' : 'wine'; | ||
if (!(process.platform !== 'win32')) return [3 /*break*/, 2]; | ||
@@ -105,0 +105,0 @@ useMono = true; |
{ | ||
"name": "electron-winstaller", | ||
"version": "5.2.0", | ||
"version": "5.2.1", | ||
"description": "Module to generate Windows installers for Electron apps", | ||
@@ -26,3 +26,3 @@ "main": "lib/index.js", | ||
"lint": "eslint --ext .ts src spec", | ||
"test": "npm run lint && ava", | ||
"test": "npm run lint && ava --timeout=30s", | ||
"tdd": "ava --watch" | ||
@@ -29,0 +29,0 @@ }, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29967677