rollup 2.10.5 → 2.10.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/dist/bin/rollup +2 -2
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +72 -55
- package/dist/es/shared/watch.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +72 -55
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.10.9
|
|
4
|
+
*2020-05-24*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Prevent invalid exports when facades are created (#3590)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3590](https://github.com/rollup/rollup/pull/3590): Prevent unneeded exports when entry facades are created and ensure all exported variables in facades are imported (@lukastaegert)
|
|
11
|
+
|
|
12
|
+
## 2.10.8
|
|
13
|
+
*2020-05-23*
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
* Fix issues when synthetic named exports are reexported as default exports (#3586)
|
|
17
|
+
|
|
18
|
+
### Pull Requests
|
|
19
|
+
* [#3584](https://github.com/rollup/rollup/pull/3584): Clarify documentation for `output.paths` (@jacksteamdev)
|
|
20
|
+
* [#3585](https://github.com/rollup/rollup/pull/3585): Target Node.js v14 instead of v13 in Windows tests (@mangs)
|
|
21
|
+
* [#3586](https://github.com/rollup/rollup/pull/3586): Handle default reexports of synthetic named exports over several stages (@lukastaegert)
|
|
22
|
+
|
|
23
|
+
## 2.10.7
|
|
24
|
+
*2020-05-22*
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
* Handle modules re-exporting namespaces without further own code (#3576)
|
|
28
|
+
|
|
29
|
+
### Pull Requests
|
|
30
|
+
* [#3576](https://github.com/rollup/rollup/pull/3576): Fix "cannot read exports of undefined" error (@guybedford)
|
|
31
|
+
|
|
32
|
+
## 2.10.6
|
|
33
|
+
*2020-05-22*
|
|
34
|
+
|
|
35
|
+
### Bug Fixes
|
|
36
|
+
* Fix some issues around class fields (#3580)
|
|
37
|
+
* Prevent a maximum call stack error when a called entity references itself in its declaration (#3581)
|
|
38
|
+
|
|
39
|
+
### Pull Requests
|
|
40
|
+
* [#3580](https://github.com/rollup/rollup/pull/3580): Update acorn class features (@guybedford)
|
|
41
|
+
* [#3581](https://github.com/rollup/rollup/pull/3581): Do not fail when including call arguments of recursively defined variables (@lukastaegert)
|
|
42
|
+
|
|
3
43
|
## 2.10.5
|
|
4
44
|
*2020-05-19*
|
|
5
45
|
|
package/dist/bin/rollup
CHANGED