New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@pnpm/npm-resolver

Package Overview
Dependencies
Maintainers
2
Versions
211
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pnpm/npm-resolver - npm Package Compare versions

Comparing version 0.3.11 to 0.3.12

10

lib/parsePref.js

@@ -9,4 +9,10 @@ "use strict";

const index = pref.lastIndexOf('@');
name = pref.substr(0, index);
pref = pref.substr(index + 1);
if (index < 1) {
name = pref;
pref = 'latest';
}
else {
name = pref.substr(0, index);
pref = pref.substr(index + 1);
}
}

@@ -13,0 +19,0 @@ if (!name) {

2

package.json
{
"name": "@pnpm/npm-resolver",
"version": "0.3.11",
"version": "0.3.12",
"description": "Resolver for npm-hosted packages",

@@ -5,0 +5,0 @@ "main": "lib/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