builder-util
Advanced tools
Comparing version 3.4.2 to 3.4.3
/// <reference types="debug" /> | ||
/// <reference types="node" /> | ||
import BluebirdPromise from "bluebird-lst"; | ||
import { ChildProcess, SpawnOptions, ExecFileOptions } from "child_process"; | ||
import { ChildProcess, ExecFileOptions, SpawnOptions } from "child_process"; | ||
import _debug from "debug"; | ||
@@ -6,0 +6,0 @@ import "source-map-support/register"; |
@@ -230,2 +230,8 @@ "use strict"; | ||
var _jsYaml; | ||
function _load_jsYaml() { | ||
return _jsYaml = require("js-yaml"); | ||
} | ||
var _os; | ||
@@ -241,8 +247,2 @@ | ||
var _jsYaml; | ||
function _load_jsYaml() { | ||
return _jsYaml = require("js-yaml"); | ||
} | ||
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } | ||
@@ -273,3 +273,3 @@ | ||
// set LC_CTYPE to avoid crash https://github.com/electron-userland/electron-builder/issues/503 Even "en_DE.UTF-8" leads to error. | ||
const locale = process.platform === "linux" ? "C.UTF-8" : "en_US.UTF-8"; | ||
const locale = process.platform === "linux" ? process.env.LANG || "C.UTF-8" : "en_US.UTF-8"; | ||
finalEnv.LANG = locale; | ||
@@ -276,0 +276,0 @@ finalEnv.LC_CTYPE = locale; |
{ | ||
"name": "builder-util", | ||
"version": "3.4.2", | ||
"version": "3.4.3", | ||
"main": "out/util.js", | ||
@@ -5,0 +5,0 @@ "author": "Vladimir Krivosheev", |
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
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
192408
31