rollup 1.31.0 → 1.31.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 +3 -3
- package/dist/rollup.es.js +6 -3
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +3 -3
- package/dist/shared/node-entry.js +6 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 1.31.1
|
|
4
|
+
*2020-02-14*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Make sure errored files are always re-evaluated in watch mode to avoid an issue in the typescript plugin (#3388)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3366](https://github.com/rollup/rollup/pull/3366): Correct spelling minifaction to minification (@VictorHom)
|
|
11
|
+
* [#3371](https://github.com/rollup/rollup/pull/3371): Adjust bug template to mention REPL.it (@lukastaegert)
|
|
12
|
+
* [#3388](https://github.com/rollup/rollup/pull/3388): Run transform hooks again in watch mode on files that errored (@lukastaegert)
|
|
13
|
+
|
|
3
14
|
## 1.31.0
|
|
4
15
|
*2020-01-31*
|
|
5
16
|
|
package/dist/bin/rollup
CHANGED