Socket
Socket
Sign inDemoInstall

rollup

Package Overview
Dependencies
28
Maintainers
1
Versions
799
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.6.4 to 0.6.5

5

CHANGELOG.md
# rollup changelog
## 0.6.5
* Add sourceMappingURL comment to code, as appropriate
* Higher resolution sourcemaps
## 0.6.4

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

8

dist/rollup.js

@@ -609,3 +609,2 @@ 'use strict';

this.path = path;
this.relativePath = _path.relative(bundle.base, path).slice(0, -3); // remove .js

@@ -633,2 +632,3 @@ this.magicString = new MagicString(source, {

_this.magicString.addSourcemapLocation(node.start);
_this.magicString.addSourcemapLocation(node.end);
}

@@ -1286,3 +1286,2 @@ });

this.externalModules = [];
this.defaultExportName = null;
this.internalNamespaceModules = [];

@@ -1611,3 +1610,3 @@ }

var promises = [sander.writeFile(dest, code)];
var promises = [];

@@ -1627,2 +1626,3 @@ if (options.sourceMap) {

promises.push(sander.writeFile(dest, code));
return Promise.all(promises);

@@ -1635,2 +1635,2 @@ }

exports.rollup = rollup;
//# sourceMappingURL=rollup.js.map
//# sourceMappingURL=/www/rollup/.gobble-build/02-esperantoBundle/1/rollup.js.map
{
"name": "rollup",
"version": "0.6.4",
"version": "0.6.5",
"description": "Next-generation ES6 module bundler",

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

@@ -38,3 +38,2 @@ import { basename, dirname, extname, relative, resolve } from 'path';

this.externalModules = [];
this.defaultExportName = null;
this.internalNamespaceModules = [];

@@ -41,0 +40,0 @@ }

@@ -22,3 +22,2 @@ import { relative } from 'path';

this.path = path;
this.relativePath = relative( bundle.base, path ).slice( 0, -3 ); // remove .js

@@ -44,2 +43,3 @@ this.magicString = new MagicString( source, {

this.magicString.addSourcemapLocation( node.start );
this.magicString.addSourcemapLocation( node.end );
}

@@ -46,0 +46,0 @@ });

@@ -26,3 +26,3 @@ import { basename } from 'path';

let promises = [ writeFile( dest, code ) ];
let promises = [];

@@ -42,2 +42,3 @@ if ( options.sourceMap ) {

promises.push( writeFile( dest, code ) );
return Promise.all( promises );

@@ -44,0 +45,0 @@ }

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