Socket
Socket
Sign inDemoInstall

electron-builder-core

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electron-builder-core - npm Package Compare versions

Comparing version 11.0.0 to 11.2.0

4

out/core.js

@@ -7,2 +7,3 @@ "use strict";

exports.getArchSuffix = getArchSuffix;
exports.toLinuxArchString = toLinuxArchString;
exports.archFromString = archFromString;

@@ -18,2 +19,5 @@ var Arch = exports.Arch = undefined;

}
function toLinuxArchString(arch) {
return arch === Arch.ia32 ? "i386" : arch === Arch.x64 ? "amd64" : "armv7l";
}
function archFromString(name) {

@@ -20,0 +24,0 @@ if (name === "x64") {

@@ -10,2 +10,4 @@ declare module "electron-builder-core" {

export function toLinuxArchString(arch: Arch): "i386" | "amd64" | "armv7l"
export function archFromString(name: string): Arch

@@ -12,0 +14,0 @@

2

package.json
{
"name": "electron-builder-core",
"version": "11.0.0",
"version": "11.2.0",
"main": "out/core.js",

@@ -5,0 +5,0 @@ "author": "Vladimir Krivosheev",

Sorry, the diff of this file is not supported yet

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