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/CHANGELOG.md +4 -0
- package/README.md +31 -6
- package/bin/rollup +1 -1
- package/dist/rollup.browser.js +6 -5
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.es.js +6 -5
- package/dist/rollup.es.js.map +1 -1
- package/dist/rollup.js +6 -5
- package/dist/rollup.js.map +1 -1
- package/package.json +1 -1
package/dist/rollup.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Rollup.js v0.41.
|
|
3
|
-
Thu Mar
|
|
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
|
|
@@ -8079,6 +8079,7 @@ Module.prototype.toJSON = function toJSON () {
|
|
|
8079
8079
|
dependencies: this.dependencies.map( function (module) { return module.id; } ),
|
|
8080
8080
|
code: this.code,
|
|
8081
8081
|
originalCode: this.originalCode,
|
|
8082
|
+
originalSourceMap: this.originalSourceMap,
|
|
8082
8083
|
ast: this.astClone,
|
|
8083
8084
|
sourceMapChain: this.sourceMapChain,
|
|
8084
8085
|
resolvedIds: this.resolvedIds
|
|
@@ -8092,8 +8093,8 @@ Module.prototype.trace = function trace ( name ) {
|
|
|
8092
8093
|
}
|
|
8093
8094
|
|
|
8094
8095
|
if ( name in this.imports ) {
|
|
8095
|
-
|
|
8096
|
-
|
|
8096
|
+
var importDeclaration = this.imports[ name ];
|
|
8097
|
+
var otherModule = importDeclaration.module;
|
|
8097
8098
|
|
|
8098
8099
|
if ( importDeclaration.name === '*' && !otherModule.isExternal ) {
|
|
8099
8100
|
return otherModule.namespace();
|
|
@@ -9836,7 +9837,7 @@ Bundle$$1.prototype.warn = function warn ( warning ) {
|
|
|
9836
9837
|
this.onwarn( warning );
|
|
9837
9838
|
};
|
|
9838
9839
|
|
|
9839
|
-
var VERSION = '0.41.
|
|
9840
|
+
var VERSION = '0.41.6';
|
|
9840
9841
|
|
|
9841
9842
|
var ALLOWED_KEYS = [
|
|
9842
9843
|
'acorn',
|