rollup 1.25.1 → 1.25.2
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 +11 -0
- package/dist/bin/rollup +2 -2
- package/dist/rollup.browser.es.js +3 -3
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.d.ts +1 -1
- package/dist/rollup.es.js +6 -5
- package/dist/rollup.js +5 -4
- package/dist/shared/index.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 1.25.2
|
|
4
|
+
*2019-10-23*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Improve performance of bundled UMD code by adding additional parentheses to enforce eager parsing (#3183)
|
|
8
|
+
* Improve types to tolerate passing a Rollup config with multiple outputs to `rollup.rollup` (#3184)
|
|
9
|
+
|
|
10
|
+
### Pull Requests
|
|
11
|
+
* [#3183](https://github.com/rollup/rollup/pull/3183): Add parentheses to factory function of UMD bundles (@ajihyf)
|
|
12
|
+
* [#3184](https://github.com/rollup/rollup/pull/3184): RollupOptions accept output as array (@imcotton)
|
|
13
|
+
|
|
3
14
|
## 1.25.1
|
|
4
15
|
*2019-10-20*
|
|
5
16
|
|
package/dist/bin/rollup
CHANGED