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.es.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
|
|
@@ -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
|
-
|
|
8093
|
-
|
|
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.
|
|
9837
|
+
var VERSION = '0.41.6';
|
|
9837
9838
|
|
|
9838
9839
|
var ALLOWED_KEYS = [
|
|
9839
9840
|
'acorn',
|