Browse Source

-> v0.35.8

gh-953 v0.35.8
Rich-Harris 8 years ago
parent
commit
e7925e29d1
  1. 4
      CHANGELOG.md
  2. 2
      package.json
  3. 2
      src/ast/scopes/ModuleScope.js

4
CHANGELOG.md

@ -1,5 +1,9 @@
# rollup changelog
## 0.35.8
* Correctly deshadow re-assigned module functions ([#910](https://github.com/rollup/rollup/issues/910))
## 0.35.7
* Refactor `flushTime.js` ([#922](https://github.com/rollup/rollup/pull/922))

2
package.json

@ -1,6 +1,6 @@
{
"name": "rollup",
"version": "0.35.7",
"version": "0.35.8",
"description": "Next-generation ES6 module bundler",
"main": "dist/rollup.js",
"module": "dist/rollup.es.js",

2
src/ast/scopes/ModuleScope.js

@ -26,7 +26,7 @@ export default class ModuleScope extends Scope {
const declaration = specifier.module.traceExport( specifier.name );
const name = declaration.getName( true );
if ( name !== specifier.name ) {
names.set(declaration.getName( true ));
names.set( declaration.getName( true ) );
}
}
});

Loading…
Cancel
Save