rollup 1.29.0 → 1.29.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 +11 -0
- package/dist/bin/rollup +2 -2
- package/dist/rollup.browser.es.js +3 -3
- package/dist/rollup.browser.js +5 -4
- package/dist/rollup.es.js +108 -99
- package/dist/rollup.js +107 -98
- package/dist/shared/index.js +3 -3
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 1.29.1
|
|
4
|
+
*2020-01-21*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Avoid crashes for circular reexports when named exports cannot be found (#3350)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3335](https://github.com/rollup/rollup/pull/3335): Fix typo (@robbinworks)
|
|
11
|
+
* [#3342](https://github.com/rollup/rollup/pull/3342): Remove ":" from test file names for Windows and update dependencies (@lukastaegert)
|
|
12
|
+
* [#3350](https://github.com/rollup/rollup/pull/3350): Properly handle circular reexports (@lukastaegert)
|
|
13
|
+
|
|
3
14
|
## 1.29.0
|
|
4
15
|
*2020-01-08*
|
|
5
16
|
|
package/dist/bin/rollup
CHANGED