rollup 0.41.5 → 0.41.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/rollup.es.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*
2
- Rollup.js v0.41.5
3
- Thu Mar 09 2017 17:34:27 GMT-0500 (EST) - commit c33f5751de53d4dd3554d7368c5f670b92ca29ca
2
+ Rollup.js v0.41.6
3
+ Thu Mar 16 2017 00:50:25 GMT-0400 (EDT) - commit a96a923d631b9d2c471137542b9c4f578b8faa53
4
4
 
5
5
 
6
6
  https://github.com/rollup/rollup
@@ -8076,6 +8076,7 @@ Module.prototype.toJSON = function toJSON () {
8076
8076
  dependencies: this.dependencies.map( function (module) { return module.id; } ),
8077
8077
  code: this.code,
8078
8078
  originalCode: this.originalCode,
8079
+ originalSourceMap: this.originalSourceMap,
8079
8080
  ast: this.astClone,
8080
8081
  sourceMapChain: this.sourceMapChain,
8081
8082
  resolvedIds: this.resolvedIds
@@ -8089,8 +8090,8 @@ Module.prototype.trace = function trace ( name ) {
8089
8090
  }
8090
8091
 
8091
8092
  if ( name in this.imports ) {
8092
- var importDeclaration = this.imports[ name ];
8093
- var otherModule = importDeclaration.module;
8093
+ var importDeclaration = this.imports[ name ];
8094
+ var otherModule = importDeclaration.module;
8094
8095
 
8095
8096
  if ( importDeclaration.name === '*' && !otherModule.isExternal ) {
8096
8097
  return otherModule.namespace();
@@ -9833,7 +9834,7 @@ Bundle$$1.prototype.warn = function warn ( warning ) {
9833
9834
  this.onwarn( warning );
9834
9835
  };
9835
9836
 
9836
- var VERSION = '0.41.5';
9837
+ var VERSION = '0.41.6';
9837
9838
 
9838
9839
  var ALLOWED_KEYS = [
9839
9840
  'acorn',