UNPKG

1.39 kBMarkdownView Raw
1# rollup changelog
2
3## 0.6.2
4
5* Permit assignments to properties of imported bindings
6
7## 0.6.1
8
9* Support for basic transformers
10
11## 0.6.0
12
13* BREAKING - `rollup.rollup` and `bundle.write` both take a single options argument
14* BREAKING - external modules must be declared upfront with `options.external: [...]`
15* Non-relative module paths will be resolved by looking for `jsnext:main` fields in the appropriate `package.json` files. This behaviour can be overridden by passing an alternative `resolveExternal` function
16* Fix sourcemap options
17* Include CLI files in npm package (duh)
18
19## 0.5.0
20
21* Command line interface
22* Sourcemap generation
23* Correct behaviour with `export { x as y } from 'z'`
24
25## 0.4.1
26
27* More import name deconflicting
28
29## 0.4.0
30
31* Self-hosting! `rollup.rollup` now rolls up rollup
32* Fix bug with comments inside a statement later being appended to it
33* Prevent shadowing of external modules
34* Rewrite computed property identifiers where necessary
35* Preserve original statement order where possible
36* Internal refactoring
37
38## 0.3.1
39
40* Saner deconflicting
41* Rename namespace imports from external modules correctly
42
43## 0.3.0
44
45* Basic functionality present, mostly spec-compliant
46
47## 0.2.1
48
49* Include dist files in npm package (duh)
50
51## 0.2.0
52
53* First release capable of doing anything useful
54* Still lots of basic functionality missing
55
56## 0.1.0
57
58* Initial experiment