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

rollup-pluginutils

Package Overview
Dependencies
Maintainers
3
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 2.3.0 to 2.3.1

4

CHANGELOG.md
# rollup-pluginutils changelog
## 2.3.1
*2017-08-06*
* Fixed ObjectPattern scope in attachScopes to recognise { ...rest } syntax ([#37](https://github.com/rollup/rollup-pluginutils/issues/37))
## 2.3.0

@@ -4,0 +8,0 @@ *2017-05-21*

@@ -34,3 +34,7 @@ 'use strict';

param.properties.forEach( function (prop) {
extractors[ (prop.value || prop.key).type ]( names, prop.value || prop.key );
if ( prop.type === 'RestElement' ) {
extractors.RestElement( names, prop );
} else {
extractors[ (prop.value || prop.key).type ]( names, prop.value || prop.key );
}
});

@@ -37,0 +41,0 @@ },

@@ -28,3 +28,7 @@ import { extname, resolve, sep } from 'path';

param.properties.forEach( function (prop) {
extractors[ (prop.value || prop.key).type ]( names, prop.value || prop.key );
if ( prop.type === 'RestElement' ) {
extractors.RestElement( names, prop );
} else {
extractors[ (prop.value || prop.key).type ]( names, prop.value || prop.key );
}
});

@@ -31,0 +35,0 @@ },

2

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

@@ -6,0 +6,0 @@ "module": "dist/pluginutils.es.js",

@@ -19,3 +19,7 @@ import { walk } from 'estree-walker';

param.properties.forEach( prop => {
extractors[ (prop.value || prop.key).type ]( names, prop.value || prop.key );
if ( prop.type === 'RestElement' ) {
extractors.RestElement( names, prop );
} else {
extractors[ (prop.value || prop.key).type ]( names, prop.value || prop.key );
}
});

@@ -22,0 +26,0 @@ },

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