Socket
Socket
Sign inDemoInstall

electron-builder-util

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electron-builder-util - npm Package Compare versions

Comparing version 19.18.1 to 19.19.0

out/arch.js

16

out/electron-builder-util.d.ts

@@ -0,1 +1,16 @@

declare module "electron-builder-util/out/arch" {
export enum Arch {
ia32 = 0,
x64 = 1,
armv7l = 2,
}
export function toLinuxArchString(arch: Arch): "i386" | "amd64" | "armv7l"
export type ArchType = "x64" | "ia32" | "armv7l"
export function getArchSuffix(arch: Arch): string
export function archFromString(name: string): Arch
}
declare module "electron-builder-util/out/promise" {

@@ -83,2 +98,3 @@

export { execWine, prepareWindowsExecutableArgs } from "electron-builder-util/out/wine"
export { Arch, toLinuxArchString, getArchSuffix, ArchType, archFromString } from "electron-builder-util/out/arch"
export const debug: debug.Debugger

@@ -85,0 +101,0 @@ export const debug7z: debug.Debugger

33

out/util.js

@@ -6,3 +6,3 @@ "use strict";

});
exports.tmpDirCounter = exports.debug7z = exports.debug = exports.prepareWindowsExecutableArgs = exports.execWine = exports.isMacOsSierra = exports.Lazy = exports.subTask = exports.task = exports.warn = exports.log = exports.TmpDir = undefined;
exports.tmpDirCounter = exports.debug7z = exports.debug = exports.archFromString = exports.getArchSuffix = exports.toLinuxArchString = exports.Arch = exports.prepareWindowsExecutableArgs = exports.execWine = exports.isMacOsSierra = exports.Lazy = exports.subTask = exports.task = exports.warn = exports.log = exports.TmpDir = undefined;

@@ -97,2 +97,33 @@ var _tmp;

});
var _arch;
function _load_arch() {
return _arch = require("./arch");
}
Object.defineProperty(exports, "Arch", {
enumerable: true,
get: function () {
return (_arch || _load_arch()).Arch;
}
});
Object.defineProperty(exports, "toLinuxArchString", {
enumerable: true,
get: function () {
return (_arch || _load_arch()).toLinuxArchString;
}
});
Object.defineProperty(exports, "getArchSuffix", {
enumerable: true,
get: function () {
return (_arch || _load_arch()).getArchSuffix;
}
});
Object.defineProperty(exports, "archFromString", {
enumerable: true,
get: function () {
return (_arch || _load_arch()).archFromString;
}
});
exports.removePassword = removePassword;

@@ -99,0 +130,0 @@ exports.exec = exec;

4

package.json
{
"name": "electron-builder-util",
"version": "19.18.1",
"version": "19.19.0",
"main": "out/util.js",

@@ -22,3 +22,3 @@ "author": "Vladimir Krivosheev",

"node-emoji": "^1.8.1",
"electron-builder-http": "~19.18.1",
"electron-builder-http": "~19.19.0",
"source-map-support": "^0.4.15",

@@ -25,0 +25,0 @@ "7zip-bin": "^2.1.0",

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