rollup 2.53.0 → 2.54.0
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 +44 -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 +88 -41
- 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 +3 -3
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +88 -41
- 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,49 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.54.0
|
|
4
|
+
*2021-07-25*
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
* Extend UMD import.meta.url polyfill to support web workers (#4186)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
* Resolve an issue where certain uses of classes could lead to an infinite recursion (#4189)
|
|
11
|
+
|
|
12
|
+
### Pull Requests
|
|
13
|
+
* [#4186](https://github.com/rollup/rollup/pull/4186): Fix UMD import.meta.url inside web workers (@ceifa)
|
|
14
|
+
* [#4188](https://github.com/rollup/rollup/pull/4188): Fix typo in renderHelpers.ts (@eltociear)
|
|
15
|
+
* [#4189](https://github.com/rollup/rollup/pull/4189): Move long path recursion prevention to MemberExpression (@lukastaegert)
|
|
16
|
+
* [#4190](https://github.com/rollup/rollup/pull/4190): Stop recommending node-builtins (@curran)
|
|
17
|
+
|
|
18
|
+
## 2.53.3
|
|
19
|
+
*2021-07-21*
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
* Solve an issue that could lead to severe memory issues and crashes when there are a lot of hoisted variables (#4183)
|
|
23
|
+
|
|
24
|
+
### Pull Requests
|
|
25
|
+
* [#4183](https://github.com/rollup/rollup/pull/4183): Avoid memory issues with hoisted variables (@lukastaegert)
|
|
26
|
+
|
|
27
|
+
## 2.53.2
|
|
28
|
+
*2021-07-15*
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
* Identify additional TDZ situations in functions that are run more than once (#4177)
|
|
32
|
+
* Fix a scoping issue when a variable inside a catch scope matches the scope parameter's name (#4178)
|
|
33
|
+
|
|
34
|
+
### Pull Requests
|
|
35
|
+
* [#4177](https://github.com/rollup/rollup/pull/4177): Fix additional let/var init bugs (@kzc)
|
|
36
|
+
* [#4178](https://github.com/rollup/rollup/pull/4178): Correctly create outside variable when shadowed by catch parameter (@lukastaegert)
|
|
37
|
+
|
|
38
|
+
## 2.53.1
|
|
39
|
+
*2021-07-11*
|
|
40
|
+
|
|
41
|
+
### Bug Fixes
|
|
42
|
+
* Do not omit namespace reexports when `treeshake` is `false` (#4175)
|
|
43
|
+
|
|
44
|
+
### Pull Requests
|
|
45
|
+
* [#4175](https://github.com/rollup/rollup/pull/4175): Generate namespace objects when not tree-shaking (@lukastaegert)
|
|
46
|
+
|
|
3
47
|
## 2.53.0
|
|
4
48
|
*2021-07-09*
|
|
5
49
|
|
package/dist/bin/rollup
CHANGED