rollup 2.53.3 → 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 +15 -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 +47 -26
- 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 +47 -26
- 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,20 @@
|
|
|
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
|
+
|
|
3
18
|
## 2.53.3
|
|
4
19
|
*2021-07-21*
|
|
5
20
|
|
package/dist/bin/rollup
CHANGED