rollup 1.16.1 → 1.16.2
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 +9 -0
- package/bin/rollup +1 -1
- package/dist/rollup.browser.es.js +3 -3
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.es.js +17 -7
- package/dist/rollup.js +17 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 1.16.2
|
|
4
|
+
*2019-06-22*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Properly wrap dynamic imports in Promises that can be caught when generating CJS output (#2958)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#2958](https://github.com/rollup/rollup/pull/2958): Make sure errors from dynamic imports can be caught (@lukastaegert)
|
|
11
|
+
|
|
3
12
|
## 1.16.1
|
|
4
13
|
*2019-06-21*
|
|
5
14
|
|
package/bin/rollup
CHANGED
|
@@ -223,7 +223,7 @@ function isNumber(x) {
|
|
|
223
223
|
return /^[-+]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(x);
|
|
224
224
|
}
|
|
225
225
|
|
|
226
|
-
var version = "1.16.
|
|
226
|
+
var version = "1.16.2";
|
|
227
227
|
|
|
228
228
|
const createGetOption = (config, command) => (name, defaultValue) => command[name] !== undefined
|
|
229
229
|
? command[name]
|