@electron/notarize
Advanced tools
Comparing version
@@ -0,1 +1,25 @@ | ||
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
@@ -10,9 +34,12 @@ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.delay = exports.parseNotarizationInfo = exports.isSecret = exports.makeSecret = exports.withTempDir = void 0; | ||
const debug = require("debug"); | ||
const fs = require("fs-extra"); | ||
const os = require("os"); | ||
const path = require("path"); | ||
const d = debug('electron-notarize:helpers'); | ||
const debug_1 = __importDefault(require("debug")); | ||
const fs = __importStar(require("fs-extra")); | ||
const os = __importStar(require("os")); | ||
const path = __importStar(require("path")); | ||
const d = (0, debug_1.default)('electron-notarize:helpers'); | ||
function withTempDir(fn) { | ||
@@ -19,0 +46,0 @@ return __awaiter(this, void 0, void 0, function* () { |
@@ -0,1 +1,2 @@ | ||
"use strict"; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
@@ -21,5 +22,9 @@ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.notarize = exports.validateAuthorizationArgs = void 0; | ||
const debug = require("debug"); | ||
const debug_1 = __importDefault(require("debug")); | ||
const promise_retry_1 = __importDefault(require("promise-retry")); | ||
const helpers_1 = require("./helpers"); | ||
@@ -29,3 +34,3 @@ const legacy_1 = require("./legacy"); | ||
const staple_1 = require("./staple"); | ||
const d = debug('electron-notarize'); | ||
const d = (0, debug_1.default)('electron-notarize'); | ||
var validate_args_1 = require("./validate-args"); | ||
@@ -61,3 +66,5 @@ Object.defineProperty(exports, "validateAuthorizationArgs", { enumerable: true, get: function () { return validate_args_1.validateLegacyAuthorizationArgs; } }); | ||
} | ||
yield (0, staple_1.stapleApp)({ appPath }); | ||
yield (0, promise_retry_1.default)(() => (0, staple_1.stapleApp)({ appPath }), { | ||
retries: 3, | ||
}); | ||
}); | ||
@@ -64,0 +71,0 @@ } |
@@ -0,1 +1,25 @@ | ||
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
@@ -10,10 +34,13 @@ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.waitForLegacyNotarize = exports.startLegacyNotarize = void 0; | ||
const debug = require("debug"); | ||
const path = require("path"); | ||
const debug_1 = __importDefault(require("debug")); | ||
const path = __importStar(require("path")); | ||
const spawn_1 = require("./spawn"); | ||
const helpers_1 = require("./helpers"); | ||
const validate_args_1 = require("./validate-args"); | ||
const d = debug('electron-notarize:legacy'); | ||
const d = (0, debug_1.default)('electron-notarize:legacy'); | ||
function authorizationArgs(rawOpts) { | ||
@@ -20,0 +47,0 @@ const opts = (0, validate_args_1.validateLegacyAuthorizationArgs)(rawOpts); |
@@ -0,1 +1,25 @@ | ||
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
@@ -10,10 +34,13 @@ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.notarizeAndWaitForNotaryTool = exports.isNotaryToolAvailable = void 0; | ||
const debug = require("debug"); | ||
const path = require("path"); | ||
const debug_1 = __importDefault(require("debug")); | ||
const path = __importStar(require("path")); | ||
const spawn_1 = require("./spawn"); | ||
const helpers_1 = require("./helpers"); | ||
const validate_args_1 = require("./validate-args"); | ||
const d = debug('electron-notarize:notarytool'); | ||
const d = (0, debug_1.default)('electron-notarize:notarytool'); | ||
function authorizationArgs(rawOpts) { | ||
@@ -20,0 +47,0 @@ const opts = (0, validate_args_1.validateNotaryToolAuthorizationArgs)(rawOpts); |
@@ -0,7 +1,11 @@ | ||
"use strict"; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.spawn = void 0; | ||
const child_process_1 = require("child_process"); | ||
const debug = require("debug"); | ||
const debug_1 = __importDefault(require("debug")); | ||
const helpers_1 = require("./helpers"); | ||
const d = debug('electron-notarize:spawn'); | ||
const d = (0, debug_1.default)('electron-notarize:spawn'); | ||
const spawn = (cmd, args = [], opts = {}) => { | ||
@@ -8,0 +12,0 @@ d('spawning cmd:', cmd, 'args:', args.map(arg => ((0, helpers_1.isSecret)(arg) ? '*********' : arg)), 'opts:', opts); |
@@ -0,1 +1,25 @@ | ||
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
@@ -10,8 +34,11 @@ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.stapleApp = void 0; | ||
const debug = require("debug"); | ||
const path = require("path"); | ||
const debug_1 = __importDefault(require("debug")); | ||
const path = __importStar(require("path")); | ||
const spawn_1 = require("./spawn"); | ||
const d = debug('electron-notarize:staple'); | ||
const d = (0, debug_1.default)('electron-notarize:staple'); | ||
function stapleApp(opts) { | ||
@@ -18,0 +45,0 @@ return __awaiter(this, void 0, void 0, function* () { |
@@ -0,2 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=types.js.map |
@@ -0,1 +1,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
@@ -2,0 +3,0 @@ exports.validateNotaryToolAuthorizationArgs = exports.isNotaryToolKeychainCredentials = exports.isNotaryToolApiKeyCredentials = exports.isNotaryToolPasswordCredentials = exports.validateLegacyAuthorizationArgs = exports.isLegacyApiKeyCredentials = exports.isLegacyPasswordCredentials = void 0; |
{ | ||
"name": "@electron/notarize", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "Notarize your Electron app", | ||
@@ -35,2 +35,3 @@ "main": "lib/index.js", | ||
"@types/node": "^13.7.7", | ||
"@types/promise-retry": "^1.1.3", | ||
"jest": "^29.0.0", | ||
@@ -43,4 +44,5 @@ "prettier": "^1.18.2", | ||
"debug": "^4.1.1", | ||
"fs-extra": "^9.0.1" | ||
"fs-extra": "^9.0.1", | ||
"promise-retry": "^2.0.1" | ||
} | ||
} |
@@ -120,3 +120,3 @@ Electron Notarize | ||
If you use the new Notary Tool method you will need to set the `teamId` option. To get this ID, go to your [Apple Developer Account](https://developer.apple.com/account), then clikc on "Membership details", and there you will find your Team ID. This link should get you there directly: https://developer.apple.com/account#MembershipDetailsCard | ||
If you use the new Notary Tool method you will need to set the `teamId` option. To get this ID, go to your [Apple Developer Account](https://developer.apple.com/account), then click on "Membership details", and there you will find your Team ID. This link should get you there directly: https://developer.apple.com/account#MembershipDetailsCard | ||
@@ -123,0 +123,0 @@ ## Example Usage |
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 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 not supported yet
57409
11.19%720
20.2%3
50%10
11.11%+ Added
+ Added
+ Added
+ Added