app-builder-bin
Advanced tools
Comparing version 3.5.12 to 3.5.13
11
index.js
@@ -14,2 +14,11 @@ "use strict" | ||
} | ||
else if (platform === "win32" && process.arch == "arm64") { | ||
/** | ||
* Golang isn't available for Windows ARM64 yet, so an ARM64 binary | ||
* can't be built yet. However, Windows ARM64 does support ia32 | ||
* emulation, so we can leverage the existing executable for ia32. | ||
* https://github.com/golang/go/issues/36439 | ||
*/ | ||
return path.join(__dirname, "win", "ia32", "app-builder.exe") | ||
} | ||
else if (platform === "win32") { | ||
@@ -23,2 +32,2 @@ return path.join(__dirname, "win", process.arch, "app-builder.exe") | ||
exports.appBuilderPath = getPath() | ||
exports.appBuilderPath = getPath() |
{ | ||
"name": "app-builder-bin", | ||
"description": "app-builder precompiled binaries", | ||
"version": "3.5.12", | ||
"version": "3.5.13", | ||
"files": [ | ||
@@ -6,0 +6,0 @@ "*.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 2 instances 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
27
110029950
11
4