rollup-pluginutils
Advanced tools
Comparing version 1.4.0 to 1.5.0
# 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; |
{ | ||
"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; |
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
20223
518