@rollup/plugin-node-resolve
Advanced tools
Comparing version 15.3.0 to 15.3.1
@@ -15,3 +15,3 @@ 'use strict'; | ||
var version = "15.3.0"; | ||
var version = "15.3.1"; | ||
var peerDependencies = { | ||
@@ -1311,3 +1311,3 @@ rollup: "^2.78.0||^3.0.0||^4.0.0" | ||
// ignore IDs with null character, these belong to other plugins | ||
if (/\0/.test(importee)) return null; | ||
if (importee && importee.includes('\0')) return null; | ||
@@ -1320,3 +1320,3 @@ const { custom = {} } = resolveOptions; | ||
if (/\0/.test(importer)) { | ||
if (importer && importer.includes('\0')) { | ||
importer = undefined; | ||
@@ -1323,0 +1323,0 @@ } |
@@ -15,3 +15,3 @@ 'use strict'; | ||
var version = "15.3.0"; | ||
var version = "15.3.1"; | ||
var peerDependencies = { | ||
@@ -1311,3 +1311,3 @@ rollup: "^2.78.0||^3.0.0||^4.0.0" | ||
// ignore IDs with null character, these belong to other plugins | ||
if (/\0/.test(importee)) return null; | ||
if (importee && importee.includes('\0')) return null; | ||
@@ -1320,3 +1320,3 @@ const { custom = {} } = resolveOptions; | ||
if (/\0/.test(importer)) { | ||
if (importer && importer.includes('\0')) { | ||
importer = undefined; | ||
@@ -1323,0 +1323,0 @@ } |
@@ -11,3 +11,3 @@ import path, { dirname, resolve, extname, normalize, sep } from 'path'; | ||
var version = "15.3.0"; | ||
var version = "15.3.1"; | ||
var peerDependencies = { | ||
@@ -1307,3 +1307,3 @@ rollup: "^2.78.0||^3.0.0||^4.0.0" | ||
// ignore IDs with null character, these belong to other plugins | ||
if (/\0/.test(importee)) return null; | ||
if (importee && importee.includes('\0')) return null; | ||
@@ -1316,3 +1316,3 @@ const { custom = {} } = resolveOptions; | ||
if (/\0/.test(importer)) { | ||
if (importer && importer.includes('\0')) { | ||
importer = undefined; | ||
@@ -1319,0 +1319,0 @@ } |
{ | ||
"name": "@rollup/plugin-node-resolve", | ||
"version": "15.3.0", | ||
"version": "15.3.1", | ||
"publishConfig": { | ||
@@ -5,0 +5,0 @@ "access": "public" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
154449