rollup 1.26.4 → 1.26.5
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 +9 -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.es.js +4 -4
- package/dist/rollup.js +3 -3
- package/dist/shared/index.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 1.26.5
|
|
4
|
+
*2019-11-11*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Fix a regression where it was no longer to pass a certain option format to generate (#3223)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3223](https://github.com/rollup/rollup/pull/3223): Allow passing input options to output (@lukastaegert)
|
|
11
|
+
|
|
3
12
|
## 1.26.4
|
|
4
13
|
*2019-11-09*
|
|
5
14
|
|
package/dist/bin/rollup
CHANGED