Socket
Socket
Sign inDemoInstall

rollup

Package Overview
Dependencies
31
Maintainers
1
Versions
800
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.12.0 to 0.12.1

5

CHANGELOG.md
# rollup changelog
## 0.12.1
* Don't attempt to mark statements belonging to external modules ([#68](https://github.com/rollup/rollup/issues/68))
* Correctly deshadow variables that conflict with imports ([#68](https://github.com/rollup/rollup/issues/68))
## 0.12.0

@@ -4,0 +9,0 @@

2

package.json
{
"name": "rollup",
"version": "0.12.0",
"version": "0.12.1",
"description": "Next-generation ES6 module bundler",

@@ -5,0 +5,0 @@ "main": "dist/rollup.js",

@@ -237,2 +237,4 @@ import { basename, extname } from './utils/path';

.then( module => {
if ( module.isExternal ) return null;
importDeclaration.module = module;

@@ -239,0 +241,0 @@ const exportDeclaration = module.exports[ importDeclaration.name ];

@@ -316,3 +316,3 @@ import { blank, keys } from './utils/object';

deshadowList.forEach( name => {
if ( ~scope.declarations[ name ] ) { // TODO is this right? no indexOf?
if ( scope.declarations[ name ] ) {
newNames[ name ] = name + '$$'; // TODO better mechanism

@@ -319,0 +319,0 @@ hasReplacements = true;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc