builder-util
Advanced tools
Comparing version 2.0.4 to 2.0.5
export declare function getMacOsVersion(): Promise<string>; | ||
export declare function isMacOsSierra(): Promise<boolean>; | ||
export declare function isMacOsHighSierra(): Promise<boolean>; | ||
export declare function isCanSignDmg(): Promise<boolean>; |
@@ -6,3 +6,3 @@ "use strict"; | ||
}); | ||
exports.isCanSignDmg = exports.isMacOsSierra = undefined; | ||
exports.isCanSignDmg = exports.isMacOsHighSierra = exports.isMacOsSierra = undefined; | ||
@@ -35,4 +35,14 @@ var _bluebirdLst; | ||
let isMacOsHighSierra = exports.isMacOsHighSierra = (() => { | ||
var _ref4 = (0, (_bluebirdLst || _load_bluebirdLst()).coroutine)(function* () { | ||
return process.platform === "darwin" && (yield isOsVersionGreaterThanOrEqualTo("10.13.0")); | ||
}); | ||
return function isMacOsHighSierra() { | ||
return _ref4.apply(this, arguments); | ||
}; | ||
})(); | ||
let isCanSignDmg = exports.isCanSignDmg = (() => { | ||
var _ref4 = (0, (_bluebirdLst || _load_bluebirdLst()).coroutine)(function* () { | ||
var _ref5 = (0, (_bluebirdLst || _load_bluebirdLst()).coroutine)(function* () { | ||
return process.platform === "darwin" && (yield isOsVersionGreaterThanOrEqualTo("10.11.5")); | ||
@@ -42,3 +52,3 @@ }); | ||
return function isCanSignDmg() { | ||
return _ref4.apply(this, arguments); | ||
return _ref5.apply(this, arguments); | ||
}; | ||
@@ -45,0 +55,0 @@ })(); |
{ | ||
"name": "builder-util", | ||
"version": "2.0.4", | ||
"version": "2.0.5", | ||
"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
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
184261
2361