Socket
Socket
Sign inDemoInstall

rollup-plugin-node-resolve

Package Overview
Dependencies
12
Maintainers
2
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.7.2 to 1.7.3

4

CHANGELOG.md
# rollup-plugin-node-resolve changelog
## 1.7.3
* Error messages are more descriptive ([#50](https://github.com/rollup/rollup-plugin-node-resolve/issues/50))
## 1.7.2

@@ -4,0 +8,0 @@

2

dist/rollup-plugin-node-resolve.cjs.js

@@ -77,3 +77,3 @@ 'use strict';

if ( skip === true ) accept( false );
else reject( err );
else reject( Error( ("Could not resolve '" + importee + "' from " + (path.normalize( importer ))) ) );
} else {

@@ -80,0 +80,0 @@ if ( resolved === COMMONJS_BROWSER_EMPTY ) {

@@ -1,2 +0,2 @@

import { resolve, dirname } from 'path';
import { resolve, normalize, dirname } from 'path';
import builtins from 'builtin-modules';

@@ -73,3 +73,3 @@ import _nodeResolve from 'resolve';

if ( skip === true ) accept( false );
else reject( err );
else reject( Error( ("Could not resolve '" + importee + "' from " + (normalize( importer ))) ) );
} else {

@@ -76,0 +76,0 @@ if ( resolved === COMMONJS_BROWSER_EMPTY ) {

{
"name": "rollup-plugin-node-resolve",
"description": "Bundle third-party dependencies in node_modules",
"version": "1.7.2",
"version": "1.7.3",
"devDependencies": {

@@ -6,0 +6,0 @@ "buble": "^0.10.6",

@@ -1,2 +0,2 @@

import { dirname, resolve } from 'path';
import { dirname, resolve, normalize } from 'path';
import builtins from 'builtin-modules';

@@ -68,3 +68,3 @@ import _nodeResolve from 'resolve';

if ( skip === true ) accept( false );
else reject( err );
else reject( Error( `Could not resolve '${importee}' from ${normalize( importer )}` ) );
} else {

@@ -71,0 +71,0 @@ if ( resolved === COMMONJS_BROWSER_EMPTY ) {

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc