Socket
Socket
Sign inDemoInstall

app-builder-lib

Package Overview
Dependencies
Maintainers
2
Versions
231
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

app-builder-lib - npm Package Compare versions

Comparing version 24.6.2 to 24.6.3

7

out/options/winOptions.d.ts

@@ -90,5 +90,12 @@ import { PlatformSpecificBuildOptions, TargetConfigType } from "../index";

* @default false
* @deprecated Use `signExts` instead for more explicit control
*/
readonly signDlls?: boolean;
/**
* Explicit file extensions to also sign. Advanced option.
* @see https://github.com/electron-userland/electron-builder/issues/7329
* @default null
*/
readonly signExts?: string[] | null;
}
export declare type RequestedExecutionLevel = "asInvoker" | "highestAvailable" | "requireAdministrator";

2

out/version.d.ts

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

export declare const PACKAGE_VERSION = "24.6.2";
export declare const PACKAGE_VERSION = "24.6.3";
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PACKAGE_VERSION = void 0;
exports.PACKAGE_VERSION = "24.6.2";
exports.PACKAGE_VERSION = "24.6.3";
//# sourceMappingURL=version.js.map

@@ -301,4 +301,6 @@ "use strict";

shouldSignFile(file) {
var _a;
const shouldSignDll = this.platformSpecificBuildOptions.signDlls === true && file.endsWith(".dll");
return shouldSignDll || file.endsWith(".exe") || file.endsWith(".node");
const shouldSignExplicit = !!((_a = this.platformSpecificBuildOptions.signExts) === null || _a === void 0 ? void 0 : _a.some(ext => file.endsWith(ext)));
return shouldSignDll || shouldSignExplicit || file.endsWith(".exe");
}

@@ -305,0 +307,0 @@ createTransformerForExtraFiles(packContext) {

{
"name": "app-builder-lib",
"description": "electron-builder lib",
"version": "24.6.2",
"version": "24.6.3",
"main": "out/index.js",

@@ -106,4 +106,4 @@ "files": [

"@types/tar": "^6.1.3",
"dmg-builder": "24.6.2",
"electron-builder-squirrel-windows": "24.6.2"
"dmg-builder": "24.6.3",
"electron-builder-squirrel-windows": "24.6.3"
},

@@ -110,0 +110,0 @@ "//": "electron-builder-squirrel-windows and dmg-builder added as dev dep for tests (as otherwise `require` doesn't work using Yarn 2)",

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 too big to display

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