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

@rollup/plugin-node-resolve

Package Overview
Dependencies
Maintainers
4
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rollup/plugin-node-resolve - npm Package Compare versions

Comparing version 7.1.2 to 7.1.3

8

CHANGELOG.md
# @rollup/plugin-node-resolve ChangeLog
## v7.1.3
_2020-04-12_
### Bugfixes
- fix: resolve symlinked entry point properly (#291)
## v7.1.2

@@ -4,0 +12,0 @@

8

dist/index.es.js

@@ -287,3 +287,9 @@ import { dirname, resolve, extname, normalize, sep } from 'path';

return resolveId(importSpecifierList[i], resolveOptions);
return resolveId(importSpecifierList[i], resolveOptions).then(result => {
if (!resolveOptions.preserveSymlinks) {
result = realpathSync(result);
}
return result;
});
});

@@ -290,0 +296,0 @@

@@ -292,3 +292,9 @@ 'use strict';

return resolveId(importSpecifierList[i], resolveOptions);
return resolveId(importSpecifierList[i], resolveOptions).then(result => {
if (!resolveOptions.preserveSymlinks) {
result = fs.realpathSync(result);
}
return result;
});
});

@@ -295,0 +301,0 @@

6

package.json
{
"name": "@rollup/plugin-node-resolve",
"version": "7.1.2",
"version": "7.1.3",
"publishConfig": {

@@ -58,4 +58,4 @@ "access": "public"

"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-json": "^4.0.1",

@@ -62,0 +62,0 @@ "es5-ext": "^0.10.53",

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