rollup 2.76.0 → 2.77.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/README.md +1 -3
- 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 +52 -57
- 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 +4 -0
- 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 +51 -56
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.77.2
|
|
4
|
+
|
|
5
|
+
_2022-07-27_
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Avoid a rendering failure when mixing outputs with inlined and non-inlined dynamic imports (#4589)
|
|
10
|
+
|
|
11
|
+
### Pull Requests
|
|
12
|
+
|
|
13
|
+
- [#4589](https://github.com/rollup/rollup/pull/4589): Handle generating non-inlined imports after inlined ones (@lukastaegert)
|
|
14
|
+
|
|
15
|
+
## 2.77.1
|
|
16
|
+
|
|
17
|
+
_2022-07-26_
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- Ensure IIFE output generates a global variable when generating ES5 (#4588)
|
|
22
|
+
|
|
23
|
+
### Pull Requests
|
|
24
|
+
|
|
25
|
+
- [#4577](https://github.com/rollup/rollup/pull/4577): broken link removed (@Jawad-H)
|
|
26
|
+
- [#4580](https://github.com/rollup/rollup/pull/4580): Update dependencies (@lukastaegert)
|
|
27
|
+
- [#4584](https://github.com/rollup/rollup/pull/4584): Documentation clarity and syntax improvements (@berniegp)
|
|
28
|
+
- [#4588](https://github.com/rollup/rollup/pull/4588): Use var for IIFE (@lukastaegert)
|
|
29
|
+
|
|
30
|
+
## 2.77.0
|
|
31
|
+
|
|
32
|
+
_2022-07-15_
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
- Introduce `maxParallelFileOps` to limit both read and write operations, default to 20 and replaces `maxParallelFileRead` (#4570)
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
- Avoid including variables referenced from return statements that are never reached (#4573)
|
|
41
|
+
|
|
42
|
+
### Pull Requests
|
|
43
|
+
|
|
44
|
+
- [#4570](https://github.com/rollup/rollup/pull/4570): Introduce maxParallelFileOps to limit parallel writes (@lukastaegert)
|
|
45
|
+
- [#4572](https://github.com/rollup/rollup/pull/4572): Document more ways to read package.json in ESM (@berniegp)
|
|
46
|
+
- [#4573](https://github.com/rollup/rollup/pull/4573): Do not include unused return expressions (@lukastaegert)
|
|
47
|
+
|
|
3
48
|
## 2.76.0
|
|
4
49
|
|
|
5
50
|
_2022-07-08_
|
package/README.md
CHANGED
|
@@ -21,9 +21,7 @@
|
|
|
21
21
|
<a href="https://github.com/rollup/rollup/blob/master/LICENSE.md">
|
|
22
22
|
<img src="https://img.shields.io/npm/l/rollup.svg" alt="license">
|
|
23
23
|
</a>
|
|
24
|
-
|
|
25
|
-
<img src="https://david-dm.org/rollup/rollup/status.svg" alt="dependency status">
|
|
26
|
-
</a>
|
|
24
|
+
|
|
27
25
|
<a href='https://is.gd/rollup_chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge'>
|
|
28
26
|
<img src='https://img.shields.io/discord/466787075518365708?color=778cd1&label=chat' alt='Join the chat at https://is.gd/rollup_chat'>
|
|
29
27
|
</a>
|
package/dist/bin/rollup
CHANGED