rollup 2.73.0 → 2.75.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 +43 -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 +1891 -1714
- package/dist/es/shared/watch.js +5 -5
- package/dist/loadConfigFile.js +3 -3
- 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 +4 -4
- package/dist/shared/loadConfigFile.js +4 -5
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +1891 -1714
- 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,48 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.75.0
|
|
4
|
+
|
|
5
|
+
_2022-05-27_
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- Re-implement default parameter tree-shaking for top-level functions (#4510)
|
|
10
|
+
- Do not consider calling string methods like `.trim()` on template literals a side effect (#4511)
|
|
11
|
+
|
|
12
|
+
### Pull Requests
|
|
13
|
+
|
|
14
|
+
- [#4510](https://github.com/rollup/rollup/pull/4510): Tree-shake parameter defaults (replaces #4498) (@lukastaegert)
|
|
15
|
+
- [#4511](https://github.com/rollup/rollup/pull/4511): Tree-shake side-effect-free string methods on template literals (@lukastaegert)
|
|
16
|
+
|
|
17
|
+
## 2.74.1
|
|
18
|
+
|
|
19
|
+
_2022-05-19_
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- Revert #4498 until some issues are understood and resolved
|
|
24
|
+
|
|
25
|
+
## 2.74.0
|
|
26
|
+
|
|
27
|
+
_2022-05-19_
|
|
28
|
+
|
|
29
|
+
### Features
|
|
30
|
+
|
|
31
|
+
- Remove unneeded default values for function parameters (#4498)
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
- Use a consistent mechanism to resolve the config file to avoid issues on Windows (#4501)
|
|
36
|
+
- Avoid an inaccurate warning about an event emitter leak for complicated builds (#4502)
|
|
37
|
+
- Ensure that reexporting values from other chunks via dynamic imports does not reference non-imported variables (#4499)
|
|
38
|
+
|
|
39
|
+
### Pull Requests
|
|
40
|
+
|
|
41
|
+
- [#4498](https://github.com/rollup/rollup/pull/4498): Tree shake parameter defaults (@lukastaegert)
|
|
42
|
+
- [#4499](https://github.com/rollup/rollup/pull/4499): Ensure reexports are available for namespaces (@lukastaegert)
|
|
43
|
+
- [#4501](https://github.com/rollup/rollup/pull/4501): fix: config path problem on windows (@pos777)
|
|
44
|
+
- [#4502](https://github.com/rollup/rollup/pull/4502): Avoid maximum listeners exceeded warning (@lukastaegert)
|
|
45
|
+
|
|
3
46
|
## 2.73.0
|
|
4
47
|
|
|
5
48
|
_2022-05-13_
|
package/dist/bin/rollup
CHANGED