Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@esbuild-plugins/node-resolve

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@esbuild-plugins/node-resolve - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

6

CHANGELOG.md
# @esbuild-plugins/node-resolve
## 0.1.4
### Patch Changes
- Fix error in yarn pnp
## 0.1.3

@@ -4,0 +10,0 @@

4

dist/index.js

@@ -64,3 +64,3 @@ "use strict";

// resolve virtual workspaces to real path
if (pnpapi && res && !res.incudes('node_modules')) {
if (pnpapi && res && !res.includes('node_modules')) {
try {

@@ -149,3 +149,3 @@ const realPath = pnpapi.resolveVirtual(res);

resolved &&
!resolved.incudes('node_modules')) {
!resolved.includes('node_modules')) {
try {

@@ -152,0 +152,0 @@ const realPath = pnpapi.resolveVirtual(resolved);

{
"name": "@esbuild-plugins/node-resolve",
"version": "0.1.3",
"version": "0.1.4",
"description": "",

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

@@ -49,4 +49,5 @@ import { OnResolveArgs, OnResolveResult, Plugin } from 'esbuild'

const res = await promisifiedResolve(id, opts)
// resolve virtual workspaces to real path
if (pnpapi && res && !res.incudes('node_modules')) {
if (pnpapi && res && !res.includes('node_modules')) {
try {

@@ -179,3 +180,3 @@ const realPath = pnpapi.resolveVirtual(res)

resolved &&
!resolved.incudes('node_modules')
!resolved.includes('node_modules')
) {

@@ -182,0 +183,0 @@ try {

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