rollup 1.21.0 → 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 +34 -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 +745 -143
- package/dist/rollup.js +744 -142
- package/dist/shared/index.js +3 -3
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
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
|
+
|
|
13
|
+
## 1.21.3
|
|
14
|
+
*2019-09-14*
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* Fix a regression where modifying a watched file did not trigger a rebuild (#3112)
|
|
18
|
+
|
|
19
|
+
### Pull Requests
|
|
20
|
+
* [#3112](https://github.com/rollup/rollup/pull/3112): Fix .addWatchFile() dependencies failing to invalidate in watch mode (@tivac)
|
|
21
|
+
|
|
22
|
+
## 1.21.2
|
|
23
|
+
*2019-09-09*
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
* Fix wrong deprecation message to direct to `this.emitFile` instead of `this.emitAsset`
|
|
27
|
+
|
|
28
|
+
## 1.21.1
|
|
29
|
+
*2019-09-09*
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
* Allow legacy plugins to still add assets directly to the bundle object (#3105)
|
|
33
|
+
|
|
34
|
+
### Pull Requests
|
|
35
|
+
* [#3105](https://github.com/rollup/rollup/pull/3105): Allow legacy plugins to still add assets directly to the bundle object (@lukastaegert)
|
|
36
|
+
|
|
3
37
|
## 1.21.0
|
|
4
38
|
*2019-09-08*
|
|
5
39
|
|
package/dist/bin/rollup
CHANGED