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

@parcel/node-resolver-core

Package Overview
Dependencies
Maintainers
1
Versions
891
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parcel/node-resolver-core - npm Package Compare versions

Comparing version 2.0.0-nightly.1924 to 2.0.0-nightly.1926

3

lib/NodeResolver.js

@@ -259,3 +259,4 @@ "use strict";

let res = pnp.resolveToUnqualified(moduleName, parent);
let res = pnp.resolveToUnqualified(moduleName + ( // retain slash in `require('assert/')` to force loading builtin from npm
filename[moduleName.length] === '/' ? '/' : ''), parent);
resolved = {

@@ -262,0 +263,0 @@ moduleName,

{
"name": "@parcel/node-resolver-core",
"version": "2.0.0-nightly.1924+509b0ba8",
"version": "2.0.0-nightly.1926+cb1bdec6",
"license": "MIT",

@@ -18,9 +18,9 @@ "publishConfig": {

"dependencies": {
"@parcel/diagnostic": "2.0.0-nightly.302+509b0ba8",
"@parcel/node-libs-browser": "2.0.0-nightly.1924+509b0ba8",
"@parcel/utils": "2.0.0-nightly.302+509b0ba8",
"@parcel/diagnostic": "2.0.0-nightly.304+cb1bdec6",
"@parcel/node-libs-browser": "2.0.0-nightly.1926+cb1bdec6",
"@parcel/utils": "2.0.0-nightly.304+cb1bdec6",
"micromatch": "^3.0.4",
"nullthrows": "^1.1.1"
},
"gitHead": "509b0ba8e76b73a2c97d4526d0f190bceade71e2"
"gitHead": "cb1bdec606e581265782a644481a36cd6152397a"
}

@@ -303,4 +303,10 @@ // @flow

require('pnpapi');
let res = pnp.resolveToUnqualified(moduleName, parent);
let res = pnp.resolveToUnqualified(
moduleName +
// retain slash in `require('assert/')` to force loading builtin from npm
(filename[moduleName.length] === '/' ? '/' : ''),
parent,
);
resolved = {

@@ -307,0 +313,0 @@ moduleName,

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