Browse Source

-> 0.15.0

contingency-plan v0.15.0
Rich Harris 10 years ago
parent
commit
9274d24deb
  1. 8
      CHANGELOG.md
  2. 2
      package.json

8
CHANGELOG.md

@ -1,5 +1,13 @@
# rollup changelog
## 0.15.0
* Load all modules specified by `import` statements, and do tree-shaking synchronously once loading is complete. This results in simpler and faster code, and enables future improvements ([#97](https://github.com/rollup/rollup/pull/97))
* Only rewrite `foo` as `exports.foo` when it makes sense to ([#92](https://github.com/rollup/rollup/issues/92))
* Fix bug with shadowed variables that are eventually exported ([#91](https://github.com/rollup/rollup/issues/91))
* Exclude unused function declarations that happen to modify a used name ([#90](https://github.com/rollup/rollup/pull/90))
* Simplify internal `Scope` model – scopes always attach to blocks, never function expressions/declarations
## 0.14.1
* `export { name } from './other'` does not create a local binding ([#16](https://github.com/rollup/rollup/issues/16))

2
package.json

@ -1,6 +1,6 @@
{
"name": "rollup",
"version": "0.14.1",
"version": "0.15.0",
"description": "Next-generation ES6 module bundler",
"main": "dist/rollup.js",
"jsnext:main": "src/rollup.js",

Loading…
Cancel
Save