app-builder-lib
Advanced tools
Comparing version 20.24.3 to 20.24.4
@@ -30,2 +30,3 @@ import { PublishOptions } from "electron-publish/out/publisher"; | ||
export { buildForge, ForgeOptions } from "./forge-maker"; | ||
export declare function checkBuildRequestOptions(options: PackagerOptions & PublishOptions): void; | ||
export declare function build(options: PackagerOptions & PublishOptions, packager?: Packager): Promise<Array<string>>; |
@@ -6,2 +6,3 @@ "use strict"; | ||
}); | ||
exports.checkBuildRequestOptions = checkBuildRequestOptions; | ||
exports.build = build; | ||
@@ -189,3 +190,3 @@ Object.defineProperty(exports, "getArchSuffix", { | ||
function build(options, packager = new (_packager().Packager)(options)) { | ||
function checkBuildRequestOptions(options) { | ||
for (const optionName of Object.keys(options)) { | ||
@@ -196,3 +197,6 @@ if (!expectedOptions.has(optionName) && options[optionName] !== undefined) { | ||
} | ||
} | ||
function build(options, packager = new (_packager().Packager)(options)) { | ||
checkBuildRequestOptions(options); | ||
const publishManager = new (_PublishManager().PublishManager)(packager, options); | ||
@@ -199,0 +203,0 @@ |
@@ -350,3 +350,3 @@ "use strict"; | ||
_builderUtil().log.info({ | ||
version: "20.24.3" | ||
version: "20.24.4" | ||
}, "electron-builder"); | ||
@@ -353,0 +353,0 @@ } catch (e) { |
{ | ||
"name": "app-builder-lib", | ||
"description": "electron-builder lib", | ||
"version": "20.24.3", | ||
"version": "20.24.4", | ||
"main": "out/index.js", | ||
@@ -6,0 +6,0 @@ "files": [ |
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
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
1987916
20210