Socket
Socket
Sign inDemoInstall

@electron/notarize

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@electron/notarize - npm Package Compare versions

Comparing version 2.2.0 to 2.2.1

4

lib/notarytool.js

@@ -105,5 +105,5 @@ "use strict";

const result = yield (0, spawn_1.spawn)('xcrun', notarizeArgs);
if (result.code !== 0) {
const parsed = JSON.parse(result.output.trim());
if (result.code !== 0 || !parsed.status || parsed.status !== 'Accepted') {
try {
const parsed = JSON.parse(result.output.trim());
if (parsed && parsed.id) {

@@ -110,0 +110,0 @@ const logResult = yield (0, spawn_1.spawn)('xcrun', [

{
"name": "@electron/notarize",
"version": "2.2.0",
"version": "2.2.1",
"description": "Notarize your Electron app",

@@ -30,3 +30,2 @@ "main": "lib/index.js",

"devDependencies": {
"@continuous-auth/semantic-release-npm": "^3.0.0",
"@types/debug": "^4.1.5",

@@ -33,0 +32,0 @@ "@types/fs-extra": "^9.0.1",

@@ -59,3 +59,3 @@ Electron Notarize

* ... or keychain with keychainProfile:
* `keychain` String - The name of the keychain or path to the keychain you stored notarization credentials in.
* `keychain` String (optional) - The name of the keychain or path to the keychain you stored notarization credentials in. If omitted, iCloud keychain is used by default.
* `keychainProfile` String - The name of the profile you provided when storing notarization credentials.

@@ -62,0 +62,0 @@ * ... or Legacy

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc