rollup 0.68.1 → 0.68.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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # rollup changelog
2
2
 
3
+ ## 0.68.2
4
+ *2018-12-23*
5
+
6
+ ### Bug Fixes
7
+ * Do not assume hoisted variables to have been initialized (#2607)
8
+
9
+ ### Pull Requests
10
+ * [#2607](https://github.com/rollup/rollup/pull/2607): Fix an issues where hoisted variables were assumed to have been initialized (@lye)
11
+
3
12
  ## 0.68.1
4
13
  *2018-12-19*
5
14
 
@@ -13,7 +22,7 @@
13
22
  *2018-12-16*
14
23
 
15
24
  ### Breaking Changes
16
- * `optimizeImports` is renamed to `experimentalOptimizeImports` to reflect this feature is not production-ready yet (#2575)
25
+ * `optimizeChunks` is renamed to `experimentalOptimizeChunks` to reflect this feature is not production-ready yet (#2575)
17
26
 
18
27
  ### Features
19
28
  * Plugins can iterate all module ids via `this.moduleIds` (#2565)
@@ -42,7 +51,7 @@
42
51
 
43
52
  ### Pull Requests
44
53
  * [#2565](https://github.com/rollup/rollup/pull/2565): Provide module graph information on the plugin context (@samccone)
45
- * [#2575](https://github.com/rollup/rollup/pull/2575): Extend bundle information, tree-shake dynamic imports, fix dynamic import facade creation, support manual chunks with multiple entry points, make `optimizeImports` experimental (@lukastaegert)
54
+ * [#2575](https://github.com/rollup/rollup/pull/2575): Extend bundle information, tree-shake dynamic imports, fix dynamic import facade creation, support manual chunks with multiple entry points, make `optimizeChunks` experimental (@lukastaegert)
46
55
  * [#2577](https://github.com/rollup/rollup/pull/2577): Update dependencies (@lukastaegert)
47
56
  * [#2584](https://github.com/rollup/rollup/pull/2584): Prune tree-shaken chunk imports, fix missing export shimming, support dynamic namespaces when preserving modules, improve chunk execution order (@lukastaegert)
48
57
  * [#2587](https://github.com/rollup/rollup/pull/2587): Support exports using destructuring declarations and assignments in SystemJS (@lukastaegert)
package/bin/rollup CHANGED
@@ -251,7 +251,7 @@ function isNumber (x) {
251
251
  return /^[-+]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(x);
252
252
  }
253
253
 
254
- var version = "0.68.1";
254
+ var version = "0.68.2";
255
255
 
256
256
  /*! *****************************************************************************
257
257
  Copyright (c) Microsoft Corporation. All rights reserved.