rollup 2.49.0 → 2.50.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 -1
- 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 +8239 -8255
- 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.d.ts +9 -8
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +21 -21
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +8219 -8235
- package/dist/shared/watch-cli.js +7 -5
- package/dist/shared/watch.js +4 -4
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.50.0
|
|
4
|
+
*2021-05-25*
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
* Only include last elements of comma expressions if they are used or have side effects (#4087)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
* Prevent a crash that could occur when calling object methods (#4091)
|
|
11
|
+
|
|
12
|
+
### Pull Requests
|
|
13
|
+
* [#4085](https://github.com/rollup/rollup/pull/4085): Switch to ESLint (@lukastaegert)
|
|
14
|
+
* [#4087](https://github.com/rollup/rollup/pull/4087): Drop unused last sequence element (@lukastaegert)
|
|
15
|
+
* [#4091](https://github.com/rollup/rollup/pull/4091): Prevent crash for recursive "this" deoptimization (@lukastaegert)
|
|
16
|
+
|
|
3
17
|
## 2.49.0
|
|
4
18
|
*2021-05-23*
|
|
5
19
|
|
|
@@ -13,7 +27,7 @@
|
|
|
13
27
|
* Track "this" mutations for methods, getters and setters (#4018)
|
|
14
28
|
|
|
15
29
|
### Pull Requests
|
|
16
|
-
* [#4018](https://github.com/rollup/rollup/pull/4018): Class method effects (@lukastaegert)
|
|
30
|
+
* [#4018](https://github.com/rollup/rollup/pull/4018): Class method effects (@marijnh and @lukastaegert)
|
|
17
31
|
|
|
18
32
|
## 2.48.0
|
|
19
33
|
*2021-05-15*
|
package/dist/bin/rollup
CHANGED