rollup 1.26.1 → 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 +38 -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 +12 -5
- package/dist/rollup.js +11 -4
- package/dist/shared/index.js +3 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
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
|
+
|
|
12
|
+
## 1.26.4
|
|
13
|
+
*2019-11-09*
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
* Keep watching known files after a plugin error during the initial build (#3219)
|
|
17
|
+
|
|
18
|
+
### Pull Requests
|
|
19
|
+
* [#3216](https://github.com/rollup/rollup/pull/3216): Fix small typo (@kaisermann)
|
|
20
|
+
* [#3217](https://github.com/rollup/rollup/pull/3217): Update dependencies and fix security vulnerability (@lukastaegert)
|
|
21
|
+
* [#3219](https://github.com/rollup/rollup/pull/3219): Also recover from plugin errors during the initial build (@lukastaegert)
|
|
22
|
+
|
|
23
|
+
## 1.26.3
|
|
24
|
+
*2019-11-02*
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
* Work around an incompatibility with rollup-plugin-dts (#3211)
|
|
28
|
+
|
|
29
|
+
### Pull Requests
|
|
30
|
+
* [#3211](https://github.com/rollup/rollup/pull/3211): Do no fail if the source attribute is `undefined` in an unused named export (@lukastaegert)
|
|
31
|
+
|
|
32
|
+
## 1.26.2
|
|
33
|
+
*2019-10-31*
|
|
34
|
+
|
|
35
|
+
### Bug Fixes
|
|
36
|
+
* Do not create invalid code when using `treeshake: false` and star re-exports (#3209)
|
|
37
|
+
|
|
38
|
+
### Pull Requests
|
|
39
|
+
* [#3209](https://github.com/rollup/rollup/pull/3209): Also remove export-all declarations when not tree-shaking (@lukastaegert)
|
|
40
|
+
|
|
3
41
|
## 1.26.1
|
|
4
42
|
*2019-10-31*
|
|
5
43
|
|
package/dist/bin/rollup
CHANGED