Browse Source

-> 0.9.0

contingency-plan v0.9.0
Rich-Harris 10 years ago
parent
commit
f8747d9424
  1. 7
      CHANGELOG.md
  2. 2
      package.json

7
CHANGELOG.md

@ -1,5 +1,12 @@
# rollup changelog # rollup changelog
## 0.9.0
* BREAKING - `resolvePath` is now `resolveId`. The returned `id` (which by default is a filepath) is passed to the `load` function, which can optionally be overridden, and which is applied to all modules including the entry module. This allows custom resolver and loading logic for integration with third party systems (e.g. JSPM) or, eventually, in-browser usage ([#30](https://github.com/rollup/rollup/issues/30))
* A statement cannot appear after later statements from the same bundle ([#34](https://github.com/rollup/rollup/issues/34))
* Tricky cyclical dependencies are handled ([#36](https://github.com/rollup/rollup/issues/36))
* `sourcemap` option is used by CLI (was omitted previously)
## 0.8.3 ## 0.8.3
* Correctly rename functions that have arguments with the same name ([#32](https://github.com/rollup/rollup/issues/32)) * Correctly rename functions that have arguments with the same name ([#32](https://github.com/rollup/rollup/issues/32))

2
package.json

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

Loading…
Cancel
Save