Socket
Socket
Sign inDemoInstall

@pnpm/server

Package Overview
Dependencies
Maintainers
2
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pnpm/server - npm Package Compare versions

Comparing version 0.12.0 to 0.13.0-0

10

lib/connectStoreController.js

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

.then((fetchResponseBody) => {
const fetchingManifest = limitedFetch(`${remotePrefix}/manifestResponse`, {
msgId,
});
const fetchingFullManifest = options.fetchFullManifest
? limitedFetch(`${remotePrefix}/manifestResponse`, { msgId })
: undefined;
const fetchingFiles = limitedFetch(`${remotePrefix}/packageFilesResponse`, {

@@ -121,4 +121,4 @@ msgId,

fetchingFiles,
fetchingManifest,
finishing: Promise.all([fetchingManifest, fetchingFiles]).then(() => undefined),
fetchingFullManifest,
finishing: Promise.all([fetchingFullManifest, fetchingFiles]).then(() => undefined),
inStoreLocation: fetchResponseBody.inStoreLocation,

@@ -125,0 +125,0 @@ };

@@ -50,4 +50,4 @@ "use strict";

const pkgResponse = yield store.requestPackage(body.wantedDependency, body.options);
if (pkgResponse['fetchingManifest']) { // tslint:disable-line
manifestPromises[body.msgId] = pkgResponse['fetchingManifest']; // tslint:disable-line
if (pkgResponse['fetchingFullManifest']) { // tslint:disable-line
manifestPromises[body.msgId] = pkgResponse['fetchingFullManifest']; // tslint:disable-line
}

@@ -63,4 +63,4 @@ if (pkgResponse['fetchingFiles']) { // tslint:disable-line

const pkgResponse = yield store.fetchPackage(body.options);
if (pkgResponse['fetchingManifest']) { // tslint:disable-line
manifestPromises[body.msgId] = pkgResponse['fetchingManifest']; // tslint:disable-line
if (pkgResponse['fetchingFullManifest']) { // tslint:disable-line
manifestPromises[body.msgId] = pkgResponse['fetchingFullManifest']; // tslint:disable-line
}

@@ -67,0 +67,0 @@ if (pkgResponse['fetchingFiles']) { // tslint:disable-line

{
"name": "@pnpm/server",
"version": "0.12.0",
"version": "0.13.0-0",
"description": "A pnpm installer server",

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

"dependencies": {
"@pnpm/package-requester": "^0.9.0 || 1",
"@pnpm/package-requester": "^2.0.0-1",
"@pnpm/resolver-base": "^1.1.0",

@@ -74,5 +74,5 @@ "@pnpm/types": "^1.7.0",

"p-limit": "^1.1.0",
"package-store": "^0.19.0 || 0.20",
"package-store": "^0.21.0-1",
"uuid": "^3.1.0"
}
}

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