rollup 2.43.1 → 2.45.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 +45 -0
- package/LICENSE.md +27 -0
- 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 +98 -38
- package/dist/es/shared/watch.js +3 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.d.ts +5 -2
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/mergeOptions.js +3 -2
- package/dist/shared/rollup.js +98 -38
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.45.2
|
|
4
|
+
*2021-04-13*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Do not user a dynamic entry file name for naming a manual chunk (#4040)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#4040](https://github.com/rollup/rollup/pull/4040): Prioritize manual chunk name over dynamic entry id (@lukastaegert)
|
|
11
|
+
|
|
12
|
+
## 2.45.1
|
|
13
|
+
*2021-04-10*
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
* Handle falsy return values from async plugin options hooks (#4039)
|
|
17
|
+
|
|
18
|
+
### Pull Requests
|
|
19
|
+
* [#4039](https://github.com/rollup/rollup/pull/4039): Do not fail when returning null or undefined from an async options hook (@lukastaegert)
|
|
20
|
+
|
|
21
|
+
## 2.45.0
|
|
22
|
+
*2021-04-09*
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
* Support private class instance methods and accessors (#4034)
|
|
26
|
+
|
|
27
|
+
### Pull Requests
|
|
28
|
+
* [#4034](https://github.com/rollup/rollup/pull/4034): feat: add support for private class methods (@dnalborczyk)
|
|
29
|
+
|
|
30
|
+
## 2.44.0
|
|
31
|
+
*2021-03-29*
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
* Add a new option `makeAbsoluteExternalsRelative` to opt out of renormalizing absolute external ids to relative ids (#4021)
|
|
35
|
+
* Extend the `resolveId` plugin hook to allow forcing or preventing renormalization of absolute external ids (#4021)
|
|
36
|
+
* Make the rendered code of individual modules available in the generated bundle (#4028)
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
* Handle objects with `__proto__` properties correctly (#4019)
|
|
40
|
+
|
|
41
|
+
### Pull Requests
|
|
42
|
+
* [#4019](https://github.com/rollup/rollup/pull/4019): Deoptimize ObjectExpression when a `__proto__` property is present (@marijnh)
|
|
43
|
+
* [#4021](https://github.com/rollup/rollup/pull/4021): Improve absolute path handling (@lukastaegert)
|
|
44
|
+
* [#4026](https://github.com/rollup/rollup/pull/4026): chore: fix vscode launch config (change tdd to bdd) (@jameslahm)
|
|
45
|
+
* [#4027](https://github.com/rollup/rollup/pull/4027): Post comment for PRs from forks (@lukastaegert)
|
|
46
|
+
* [#4028](https://github.com/rollup/rollup/pull/4028): Expose rendered module code to generateBundle hook (@btd)
|
|
47
|
+
|
|
3
48
|
## 2.43.1
|
|
4
49
|
*2021-03-28*
|
|
5
50
|
|
package/LICENSE.md
CHANGED
|
@@ -111,6 +111,33 @@ Repository: https://github.com/acornjs/acorn-private-class-elements
|
|
|
111
111
|
|
|
112
112
|
---------------------------------------
|
|
113
113
|
|
|
114
|
+
## acorn-private-methods
|
|
115
|
+
License: MIT
|
|
116
|
+
By: Adrian Heine
|
|
117
|
+
Repository: https://github.com/acornjs/acorn-private-methods
|
|
118
|
+
|
|
119
|
+
> Copyright (C) 2017-2018 by Adrian Heine
|
|
120
|
+
>
|
|
121
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
122
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
123
|
+
> in the Software without restriction, including without limitation the rights
|
|
124
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
125
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
126
|
+
> furnished to do so, subject to the following conditions:
|
|
127
|
+
>
|
|
128
|
+
> The above copyright notice and this permission notice shall be included in
|
|
129
|
+
> all copies or substantial portions of the Software.
|
|
130
|
+
>
|
|
131
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
132
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
133
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
134
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
135
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
136
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
137
|
+
> THE SOFTWARE.
|
|
138
|
+
|
|
139
|
+
---------------------------------------
|
|
140
|
+
|
|
114
141
|
## acorn-static-class-features
|
|
115
142
|
License: MIT
|
|
116
143
|
By: Adrian Heine
|
package/dist/bin/rollup
CHANGED