rollup 1.25.2 → 1.26.0

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,21 @@
1
1
  # rollup changelog
2
2
 
3
+ ## 1.26.0
4
+ *2019-10-27*
5
+
6
+ ### Features
7
+ * Only warn when no output is provided for an IIFE bundle but still produce valid code (#3181)
8
+ * Support reexporting namespaces as a binding (#3193)
9
+ * Switch from hash.js to crypto for hashing in the Node build for better performance and support for very large assets (#3194)
10
+
11
+ ### Bug Fixes
12
+ * Correctly handle chunks reexporting the same namespace as two different bindings (#3193)
13
+
14
+ ### Pull Requests
15
+ * [#3181](https://github.com/rollup/rollup/pull/3181): Remove the need to provide an output name for IIFE bundles (@bterrier)
16
+ * [#3193](https://github.com/rollup/rollup/pull/3193): Add support for "export * as name from …" (@lukastaegert)
17
+ * [#3194](https://github.com/rollup/rollup/pull/3194): Add support for large assets (> 100 MB) (@SebastianNiemann)
18
+
3
19
  ## 1.25.2
4
20
  *2019-10-23*
5
21
 
package/LICENSE.md CHANGED
@@ -28,6 +28,33 @@ The published Rollup artifact additionally contains code with the following lice
28
28
  MIT, ISC, Apache-2.0
29
29
 
30
30
  # Bundled dependencies:
31
+ ## acorn-export-ns-from
32
+ License: MIT
33
+ By: Adrian Heine
34
+ Repository: https://github.com/acornjs/acorn-export-ns-from
35
+
36
+ > Copyright (C) 2017-2018 by Adrian Heine
37
+ >
38
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
39
+ > of this software and associated documentation files (the "Software"), to deal
40
+ > in the Software without restriction, including without limitation the rights
41
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
42
+ > copies of the Software, and to permit persons to whom the Software is
43
+ > furnished to do so, subject to the following conditions:
44
+ >
45
+ > The above copyright notice and this permission notice shall be included in
46
+ > all copies or substantial portions of the Software.
47
+ >
48
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
49
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
50
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
51
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
52
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
53
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
54
+ > THE SOFTWARE.
55
+
56
+ ---------------------------------------
57
+
31
58
  ## acorn-import-meta
32
59
  License: MIT
33
60
  By: Adrian Heine
package/dist/bin/rollup CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  /*
4
4
  @license
5
- Rollup.js v1.25.2
6
- Wed, 23 Oct 2019 05:48:50 GMT - commit b123169865e670d3b961d5afaef090aa4e019fef
5
+ Rollup.js v1.26.0
6
+ Sun, 27 Oct 2019 19:40:08 GMT - commit 53fb6fe344376cad0af73d43a6d9790cb7a1e2b9
7
7
 
8
8
 
9
9
  https://github.com/rollup/rollup
@@ -18,6 +18,7 @@ require('util');
18
18
  var path = require('path');
19
19
  var fs = require('fs');
20
20
  require('acorn');
21
+ require('crypto');
21
22
  var events = require('events');
22
23
  require('module');
23
24
  var assert = require('assert');