rollup 1.21.3 → 1.21.4
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 -1
- 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 +737 -142
- package/dist/rollup.js +736 -141
- package/dist/shared/index.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 1.21.4
|
|
4
|
+
*2019-09-16*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Recognize common browser globals (#3117)
|
|
8
|
+
* Do not treat "typeof <global>" as a side-effect (#3117)
|
|
9
|
+
|
|
10
|
+
### Pull Requests
|
|
11
|
+
* [#3117](https://github.com/rollup/rollup/pull/3117): Add browser globals to known globals and prevent "typeof" side-effects (@lukastaegert)
|
|
12
|
+
|
|
3
13
|
## 1.21.3
|
|
4
|
-
*2019-09-
|
|
14
|
+
*2019-09-14*
|
|
5
15
|
|
|
6
16
|
### Bug Fixes
|
|
7
17
|
* Fix a regression where modifying a watched file did not trigger a rebuild (#3112)
|
package/dist/bin/rollup
CHANGED