rollup 2.72.1 → 2.74.1
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 +49 -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 +582 -540
- package/dist/es/shared/watch.js +3 -3
- 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 +2 -2
- package/dist/shared/loadConfigFile.js +4 -5
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +582 -540
- 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,54 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.74.1
|
|
4
|
+
|
|
5
|
+
_2022-05-19_
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Revert #4498 until some issues are understood and resolved
|
|
10
|
+
|
|
11
|
+
## 2.74.0
|
|
12
|
+
|
|
13
|
+
_2022-05-19_
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
- Remove unneeded default values for function parameters (#4498)
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- Use a consistent mechanism to resolve the config file to avoid issues on Windows (#4501)
|
|
22
|
+
- Avoid an inaccurate warning about an event emitter leak for complicated builds (#4502)
|
|
23
|
+
- Ensure that reexporting values from other chunks via dynamic imports does not reference non-imported variables (#4499)
|
|
24
|
+
|
|
25
|
+
### Pull Requests
|
|
26
|
+
|
|
27
|
+
- [#4498](https://github.com/rollup/rollup/pull/4498): Tree shake parameter defaults (@lukastaegert)
|
|
28
|
+
- [#4499](https://github.com/rollup/rollup/pull/4499): Ensure reexports are available for namespaces (@lukastaegert)
|
|
29
|
+
- [#4501](https://github.com/rollup/rollup/pull/4501): fix: config path problem on windows (@pos777)
|
|
30
|
+
- [#4502](https://github.com/rollup/rollup/pull/4502): Avoid maximum listeners exceeded warning (@lukastaegert)
|
|
31
|
+
|
|
32
|
+
## 2.73.0
|
|
33
|
+
|
|
34
|
+
_2022-05-13_
|
|
35
|
+
|
|
36
|
+
### Features
|
|
37
|
+
|
|
38
|
+
- Do not treat Object.defineProperty/ies as side effect when called on an unused object (#4493)
|
|
39
|
+
- Do not assume that assigning a property can create a getter with side effects (#4493)
|
|
40
|
+
- Do not treat string.prototype.replace(All) as side effect when used with two literals (#4493)
|
|
41
|
+
|
|
42
|
+
### Bug Fixes
|
|
43
|
+
|
|
44
|
+
- Detect side effects when manually declaring getters on functions (#4493)
|
|
45
|
+
|
|
46
|
+
### Pull Requests
|
|
47
|
+
|
|
48
|
+
- [#4493](https://github.com/rollup/rollup/pull/4493): Handle getters on functions and improve property deoptimization (@lukastaegert)
|
|
49
|
+
- [#4494](https://github.com/rollup/rollup/pull/4494): Do not treat string.replace as side effect when used with a literal (@lukastaegert)
|
|
50
|
+
- [#4495](https://github.com/rollup/rollup/pull/4495): Update docs for --configPlugin using typescript (@Jimmydalecleveland)
|
|
51
|
+
|
|
3
52
|
## 2.72.1
|
|
4
53
|
|
|
5
54
|
_2022-05-07_
|
package/dist/bin/rollup
CHANGED