Socket
Socket
Sign inDemoInstall

app-builder-bin

Package Overview
Dependencies
Maintainers
1
Versions
149
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

app-builder-bin - npm Package Compare versions

Comparing version 3.6.0 to 3.6.1

9

index.js

@@ -11,6 +11,7 @@ "use strict"

const platform = process.platform;
const arch = process.arch
if (platform === "darwin") {
return path.join(__dirname, "mac", `app-builder_${process.arch}`)
return path.join(__dirname, "mac", `app-builder_${arch === "x64" ? "amd64" : arch}`)
}
else if (platform === "win32" && process.arch == "arm64") {
else if (platform === "win32" && arch === "arm64") {
/**

@@ -25,6 +26,6 @@ * Golang isn't available for Windows ARM64 yet, so an ARM64 binary

else if (platform === "win32") {
return path.join(__dirname, "win", process.arch, "app-builder.exe")
return path.join(__dirname, "win", arch, "app-builder.exe")
}
else {
return path.join(__dirname, "linux", process.arch, "app-builder")
return path.join(__dirname, "linux", arch, "app-builder")
}

@@ -31,0 +32,0 @@ }

{
"name": "app-builder-bin",
"description": "app-builder precompiled binaries",
"version": "3.6.0",
"version": "3.6.1",
"files": [

@@ -6,0 +6,0 @@ "*.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc