electron-builder-util
Advanced tools
Comparing version 19.6.4 to 19.7.0
@@ -74,3 +74,3 @@ declare module "electron-builder-util/out/promise" { | ||
export function doSpawn(command: string, args: Array<string>, options?: SpawnOptions, pipeInput?: Boolean): ChildProcess | ||
export function doSpawn(command: string, args: Array<string>, options?: SpawnOptions, pipeInput?: Boolean, isDebugEnabled?: boolean): ChildProcess | ||
@@ -77,0 +77,0 @@ export function spawn(command: string, args?: Array<string> | null, options?: SpawnOptions): Promise<any> |
@@ -45,3 +45,3 @@ "use strict"; | ||
return function computeDefaultAppDirectory(_x, _x2) { | ||
return function computeDefaultAppDirectory(_x2, _x3) { | ||
return _ref.apply(this, arguments); | ||
@@ -209,2 +209,4 @@ }; | ||
function doSpawn(command, args, options, pipeInput) { | ||
let isDebugEnabled = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : debug.enabled; | ||
if (options == null) { | ||
@@ -216,3 +218,3 @@ options = {}; | ||
} | ||
if (debug.enabled) { | ||
if (isDebugEnabled) { | ||
const argsString = args.join(" "); | ||
@@ -219,0 +221,0 @@ debug(`Spawning ${command} ${command === "docker" ? argsString : removePassword(argsString)}`); |
{ | ||
"name": "electron-builder-util", | ||
"version": "19.6.4", | ||
"version": "19.7.0", | ||
"main": "out/util.js", | ||
@@ -22,3 +22,3 @@ "author": "Vladimir Krivosheev", | ||
"node-emoji": "^1.5.1", | ||
"electron-builder-http": "~19.6.4", | ||
"electron-builder-http": "~19.7.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
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
119002
1269
+ Addedelectron-builder-http@19.7.2(transitive)
- Removedelectron-builder-http@19.6.4(transitive)