Socket
Socket
Sign inDemoInstall

@electron/get

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@electron/get - npm Package Compare versions

Comparing version 1.3.2 to 1.3.3

7

dist/cjs/artifact-utils.js

@@ -25,3 +25,8 @@ "use strict";

utils_1.ensureIsTruthyString(details, 'arch');
return [details.artifactName, details.version, details.platform, details.arch].join('-') + ".zip";
return [
details.artifactName,
details.version,
details.platform,
details.arch
].concat((details.artifactSuffix ? [details.artifactSuffix] : [])).join('-') + ".zip";
}

@@ -28,0 +33,0 @@ exports.getArtifactFileName = getArtifactFileName;

@@ -23,3 +23,8 @@ import { ensureIsTruthyString } from './utils';

ensureIsTruthyString(details, 'arch');
return [details.artifactName, details.version, details.platform, details.arch].join('-') + ".zip";
return [
details.artifactName,
details.version,
details.platform,
details.arch
].concat((details.artifactSuffix ? [details.artifactSuffix] : [])).join('-') + ".zip";
}

@@ -26,0 +31,0 @@ function mirrorVar(name, options, defaultValue) {

2

package.json
{
"name": "@electron/get",
"version": "1.3.2",
"version": "1.3.3",
"description": "Utility for downloading artifacts from different versions of Electron",

@@ -5,0 +5,0 @@ "main": "dist/cjs/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc