rollup 2.26.1 → 2.26.5
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 +101 -68
- 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 +101 -68
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.26.5
|
|
4
|
+
*2020-08-22*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Use correctly deconflicted variable names for reexported namespaces in ES formats (#3742)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3742](https://github.com/rollup/rollup/pull/3742): Avoid variable name conflict when reexporting several namespaces from a chunk (@lukastaegert)
|
|
11
|
+
|
|
12
|
+
## 2.26.4
|
|
13
|
+
*2020-08-19*
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
* Fix a situation where invalid code was rendered when dynamically importing a module with synthetic named exports when preserving modules (#3738)
|
|
17
|
+
* Create a proper namespace object when in a non-es format, a namespace is imported from a chunk with `default` export mode (#3738)
|
|
18
|
+
* Use the same variable when in a chunk, a namespace is both imported and reexported as a binding (#3738)
|
|
19
|
+
* Do not include the synthetic namespace in static entry points unless it is actually used (#3738)
|
|
20
|
+
* Make sure the chunking of one output does not interfere with the namespace objects of another output (#3738)
|
|
21
|
+
|
|
22
|
+
### Pull Requests
|
|
23
|
+
* [#3738](https://github.com/rollup/rollup/pull/3738): Improve synthetic entry handling (@lukastaegert)
|
|
24
|
+
|
|
25
|
+
## 2.26.3
|
|
26
|
+
*2020-08-16*
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
* Fix a situation where line-breaks in a nested simplified conditional expression could result in broken code (#3734)
|
|
30
|
+
|
|
31
|
+
### Pull Requests
|
|
32
|
+
* [#3734](https://github.com/rollup/rollup/pull/3734): Prevent ASI when simplifying a nested logical expression (@lukastaegert)
|
|
33
|
+
|
|
34
|
+
## 2.26.2
|
|
35
|
+
*2020-08-16*
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
* Fix a situation where line-breaks in a simplified conditional expression could result in broken code (#3732)
|
|
39
|
+
|
|
40
|
+
### Pull Requests
|
|
41
|
+
* [#3732](https://github.com/rollup/rollup/pull/3732): Prevent unintended ASI for nested conditionals (@lukastaegert)
|
|
42
|
+
|
|
3
43
|
## 2.26.1
|
|
4
44
|
*2020-08-16*
|
|
5
45
|
|
package/dist/bin/rollup
CHANGED