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

rollup-pluginutils

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-pluginutils - npm Package Compare versions

Comparing version 1.4.0 to 1.5.0

4

CHANGELOG.md
# rollup-pluginutils changelog
## 1.5.0
* Exclude IDs with null character (`\0`)
## 1.4.0

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

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var estreeWalker = require('estree-walker');

@@ -184,2 +186,3 @@ var path = require('path');

if ( typeof id !== 'string' ) return false;
if ( /\0/.test( id ) ) return false;

@@ -186,0 +189,0 @@ var included = !include.length;

@@ -182,2 +182,3 @@ import { walk } from 'estree-walker';

if ( typeof id !== 'string' ) return false;
if ( /\0/.test( id ) ) return false;

@@ -184,0 +185,0 @@ var included = !include.length;

2

package.json
{
"name": "rollup-pluginutils",
"description": "Functionality commonly needed by Rollup plugins",
"version": "1.4.0",
"version": "1.5.0",
"main": "dist/pluginutils.cjs.js",

@@ -6,0 +6,0 @@ "jsnext:main": "dist/pluginutils.es6.js",

@@ -11,2 +11,3 @@ import { resolve, sep } from 'path';

if ( typeof id !== 'string' ) return false;
if ( /\0/.test( id ) ) return false;

@@ -13,0 +14,0 @@ let included = !include.length;

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