rollup 2.50.1 → 2.50.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 +47 -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 +141 -90
- package/dist/es/shared/watch.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- 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 +141 -90
- 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,52 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.50.5
|
|
4
|
+
*2021-05-30*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Detect side effects when accessing thenables (#4115)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#4114](https://github.com/rollup/rollup/pull/4114): use `colorette` instead of `turbocolor` (@ryuever)
|
|
11
|
+
* [#4115](https://github.com/rollup/rollup/pull/4115): Tracks side effects of thenables (@lukastaegert)
|
|
12
|
+
|
|
13
|
+
## 2.50.4
|
|
14
|
+
*2021-05-29*
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* Fix a situation where tree-shaking would stop including nodes prematurely (#4111)
|
|
18
|
+
* Track mutations and accessor side effects when using `__proto__` in an object literal (#4112)
|
|
19
|
+
* Check for getter effects when spreading an object (#4113)
|
|
20
|
+
|
|
21
|
+
### Pull Requests
|
|
22
|
+
* [#4111](https://github.com/rollup/rollup/pull/4111): Always request a new tree-shaking pass when deoptimizations of a node are first included (@lukastaegert)
|
|
23
|
+
* [#4112](https://github.com/rollup/rollup/pull/4112): Actually set the prototype when using a __proto__ property (@lukastaegert)
|
|
24
|
+
* [#4113](https://github.com/rollup/rollup/pull/4113): Track access side effects when using object spread operator (@lukastaegert)
|
|
25
|
+
|
|
26
|
+
## 2.50.3
|
|
27
|
+
*2021-05-28*
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
* Wrap parentheses around leading elements in simplified sequence expressions if this would otherwise lead to invalid code (#4110)
|
|
31
|
+
* Do not associate block soped variables in catch clauses with the clause parameter (#4108)
|
|
32
|
+
* Do not associate hoisted variables in catch clauses with outside variables if they match the parameter (#4108)
|
|
33
|
+
* Use correct "this" context for tagged template literal member expressions in simplified sequences (#4110)
|
|
34
|
+
|
|
35
|
+
### Pull Requests
|
|
36
|
+
* [#4108](https://github.com/rollup/rollup/pull/4108): Correctly handle catch declarations (@lukastaegert)
|
|
37
|
+
* [#4110](https://github.com/rollup/rollup/pull/4110): Invalid sequence expression simplification (@lukastaegert)
|
|
38
|
+
|
|
39
|
+
## 2.50.2
|
|
40
|
+
*2021-05-27*
|
|
41
|
+
|
|
42
|
+
### Bug Fixes
|
|
43
|
+
* Avoid unnecessary side effects when using methods like `.filter` and `.map` (#4103)
|
|
44
|
+
* Avoid crash when a module with moduleSideEffects no-treeshake imports a tree-shaken module (#4104)
|
|
45
|
+
|
|
46
|
+
### Pull Requests
|
|
47
|
+
* [#4103](https://github.com/rollup/rollup/pull/4103): Do not track side-effect-free array methods as side effects (@lukastaegert)
|
|
48
|
+
* [#4104](https://github.com/rollup/rollup/pull/4104): Fix crash when using inlineDynamicImports with no-treeshake (@lukastaegert)
|
|
49
|
+
|
|
3
50
|
## 2.50.1
|
|
4
51
|
*2021-05-26*
|
|
5
52
|
|
package/dist/bin/rollup
CHANGED