rollup 2.8.0 → 2.9.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 +44 -0
- package/LICENSE.md +0 -27
- package/dist/bin/rollup +2 -2
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +390 -275
- package/dist/es/shared/watch.js +20 -16
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.d.ts +22 -12
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +7 -7
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +390 -275
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +20 -16
- package/package.json +9 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.9.1
|
|
4
|
+
*2020-05-11*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Do not create unintended live-bindings or invalid reexports when reexporting global variables (#3550)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3550](https://github.com/rollup/rollup/pull/3550): Track updates of globals that are exported as default (@lukastaegert)
|
|
11
|
+
|
|
12
|
+
## 2.9.0
|
|
13
|
+
*2020-05-10*
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
* Add ids of static and dynamic imports to `this.getModuleInfo` (#3542)
|
|
17
|
+
* Provide `getModuleInfo` and `getModuleIds` to `manualChunks` functions (#3542)
|
|
18
|
+
* Add nullish coalescing support (#3548)
|
|
19
|
+
* Make the rebuild delay in watch mode configurable and set the default to `0` for snappy rebuilds (#3502)
|
|
20
|
+
* Add `this.getModuleIds` to the plugin context as future replacement for `this.moduleIds` (#3542)
|
|
21
|
+
|
|
22
|
+
### Pull Requests
|
|
23
|
+
* [#3502](https://github.com/rollup/rollup/pull/3502): Configurable build delay (@mattdesl)
|
|
24
|
+
* [#3542](https://github.com/rollup/rollup/pull/3542): Extend manualChunks API (@lukastaegert)
|
|
25
|
+
* [#3548](https://github.com/rollup/rollup/pull/3548): Support nullish coalescing with tree-shaking (@lukastaegert)
|
|
26
|
+
|
|
27
|
+
## 2.8.2
|
|
28
|
+
*2020-05-07*
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
* Avoid invalid code when simplifying the body of a shorthand arrow function expression (#3540)
|
|
32
|
+
|
|
33
|
+
### Pull Requests
|
|
34
|
+
* [#3540](https://github.com/rollup/rollup/pull/3540): Wrap object expressions in parentheses if they become children of an arrow function expression (@lukastaegert)
|
|
35
|
+
|
|
36
|
+
## 2.8.1
|
|
37
|
+
*2020-05-07*
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
* Allow using plugins on CLI that are exported as `exports.default` (#3529)
|
|
41
|
+
* Do not fail side-effect detection in nested callbacks of builtins (#3539)
|
|
42
|
+
|
|
43
|
+
### Pull Requests
|
|
44
|
+
* [#3529](https://github.com/rollup/rollup/pull/3529): Use default named export with plugins (@NotWoods)
|
|
45
|
+
* [#3539](https://github.com/rollup/rollup/pull/3539): Track call side-effects both by entity and CallExpression to avoid untracked side-effects in nested calls (@lukastaegert)
|
|
46
|
+
|
|
3
47
|
## 2.8.0
|
|
4
48
|
*2020-05-06*
|
|
5
49
|
|
package/LICENSE.md
CHANGED
|
@@ -82,33 +82,6 @@ Repository: https://github.com/acornjs/acorn-class-fields
|
|
|
82
82
|
|
|
83
83
|
---------------------------------------
|
|
84
84
|
|
|
85
|
-
## acorn-export-ns-from
|
|
86
|
-
License: MIT
|
|
87
|
-
By: Adrian Heine
|
|
88
|
-
Repository: https://github.com/acornjs/acorn-export-ns-from
|
|
89
|
-
|
|
90
|
-
> Copyright (C) 2017-2018 by Adrian Heine
|
|
91
|
-
>
|
|
92
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
93
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
94
|
-
> in the Software without restriction, including without limitation the rights
|
|
95
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
96
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
97
|
-
> furnished to do so, subject to the following conditions:
|
|
98
|
-
>
|
|
99
|
-
> The above copyright notice and this permission notice shall be included in
|
|
100
|
-
> all copies or substantial portions of the Software.
|
|
101
|
-
>
|
|
102
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
103
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
104
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
105
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
106
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
107
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
108
|
-
> THE SOFTWARE.
|
|
109
|
-
|
|
110
|
-
---------------------------------------
|
|
111
|
-
|
|
112
85
|
## acorn-import-meta
|
|
113
86
|
License: MIT
|
|
114
87
|
By: Adrian Heine
|
package/dist/bin/rollup
CHANGED