Socket
Socket
Sign inDemoInstall

@rollup/plugin-node-resolve

Package Overview
Dependencies
Maintainers
4
Versions
45
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 13.2.1 to 13.2.2

10

CHANGELOG.md
# @rollup/plugin-node-resolve ChangeLog
## v13.2.2
_2022-05-02_
### Bugfixes
- fix: Respect if other plugins resolve the resolution to a different id (#1181)
- fix: Revert respect if other plugins resolve the resolution to a different id (ae59ceb)
- fix: Respect if other plugins resolve the resolution to a different id (f8d4c44)
## v13.2.1

@@ -4,0 +14,0 @@

13

dist/cjs/index.js

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

var version = "13.2.1";
var version = "13.2.2";

@@ -1155,4 +1155,4 @@ util.promisify(fs__default["default"].access);

buildStart(options) {
rollupOptions = options;
buildStart(buildOptions) {
rollupOptions = buildOptions;

@@ -1163,3 +1163,3 @@ for (const warning of warnings) {

({ preserveSymlinks } = options);
({ preserveSymlinks } = buildOptions);
},

@@ -1196,2 +1196,7 @@

}
// Allow other plugins to take over resolution. Rollup core will not
// change the id if it corresponds to an existing file
if (resolvedResolved.id !== resolved.id) {
return resolvedResolved;
}
// Pass on meta information added by other plugins

@@ -1198,0 +1203,0 @@ return { ...resolved, meta: resolvedResolved.meta };

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

var version = "13.2.1";
var version = "13.2.2";

@@ -1142,4 +1142,4 @@ promisify(fs.access);

buildStart(options) {
rollupOptions = options;
buildStart(buildOptions) {
rollupOptions = buildOptions;

@@ -1150,3 +1150,3 @@ for (const warning of warnings) {

({ preserveSymlinks } = options);
({ preserveSymlinks } = buildOptions);
},

@@ -1183,2 +1183,7 @@

}
// Allow other plugins to take over resolution. Rollup core will not
// change the id if it corresponds to an existing file
if (resolvedResolved.id !== resolved.id) {
return resolvedResolved;
}
// Pass on meta information added by other plugins

@@ -1185,0 +1190,0 @@ return { ...resolved, meta: resolvedResolved.meta };

{
"name": "@rollup/plugin-node-resolve",
"version": "13.2.1",
"version": "13.2.2",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

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