rollup 2.52.5 → 2.53.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 +36 -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 +222 -54
- package/dist/es/shared/watch.js +9 -8
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.d.ts +2 -0
- 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 +3 -2
- package/dist/shared/rollup.js +225 -69
- 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,41 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.53.0
|
|
4
|
+
*2021-07-09*
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
* Add `maxParallelFileReads` option to limit read operations with a default of 20 (#4170)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#4170](https://github.com/rollup/rollup/pull/4170): Limit parallel file reads to prevent "EMFILE: too many open files" error (@schummar)
|
|
11
|
+
|
|
12
|
+
## 2.52.8
|
|
13
|
+
*2021-07-07*
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
* Automatically handle many use `var` before declaration and TDZ access scenarios correctly without the need for `treeshake.correctVarValueBeforeDeclaration` (#4148)
|
|
17
|
+
|
|
18
|
+
### Pull Requests
|
|
19
|
+
* [#4148](https://github.com/rollup/rollup/pull/4148): Fix var/const/let variable use before declaration (@kzc and @lukastaegert)
|
|
20
|
+
|
|
21
|
+
## 2.52.7
|
|
22
|
+
*2021-07-02*
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
* Fix an issue where reassignments where not tracked through async function returns (#4163)
|
|
26
|
+
|
|
27
|
+
### Pull Requests
|
|
28
|
+
* [#4163](https://github.com/rollup/rollup/pull/4163): Deoptimize return values of async functions (@lukastaegert)
|
|
29
|
+
|
|
30
|
+
## 2.52.6
|
|
31
|
+
*2021-07-01*
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
* Fix an issue where reassignments where not tracked through an await expression (#4162)
|
|
35
|
+
|
|
36
|
+
### Pull Requests
|
|
37
|
+
* [#4162](https://github.com/rollup/rollup/pull/4162): doptimize awaited expressions (@lukastaegert)
|
|
38
|
+
|
|
3
39
|
## 2.52.5
|
|
4
40
|
*2021-07-01*
|
|
5
41
|
|
package/dist/bin/rollup
CHANGED