Browse Source

-> 0.7.6

contingency-plan v0.7.6
Rich-Harris 10 years ago
parent
commit
53655fadb0
  1. 7
      CHANGELOG.md
  2. 2
      package.json

7
CHANGELOG.md

@ -1,5 +1,12 @@
# rollup changelog
## 0.7.6
* Better placement of `export default` statements ([#21](https://github.com/rollup/rollup/issues/21))
* Prevent function calls and property assignments from being treated as rebinding for sake of unbound default exports
* Add `--external foo,bar,baz` option to CLI (equivalent to `external: ['foo', 'bar', 'baz']`)
* Add CLI tests
## 0.7.5
* Prevent accidental conflicts with the global namespace ([#20](https://github.com/rollup/rollup/issues/20))

2
package.json

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

Loading…
Cancel
Save