Skip to content

Commit dff0466

Browse files
committed
docs(en): merging all conflicts
2 parents 75b8f4a + 37d1915 commit dff0466

File tree

19 files changed

+605
-418
lines changed

19 files changed

+605
-418
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# rollup changelog
22

3+
## 4.44.0
4+
5+
_2025-06-19_
6+
7+
### Features
8+
9+
- Remove limit on `maxParallelFileOps` as this could break watch mode with the commonjs plugin (#5986)
10+
11+
### Bug Fixes
12+
13+
- Provide better source mappings when coarse intermediate maps are used (#5985)
14+
15+
### Pull Requests
16+
17+
- [#5984](https://github.com/rollup/rollup/pull/5984): fix(deps): lock file maintenance minor/patch updates (@renovate[bot], @lukastaegert)
18+
- [#5985](https://github.com/rollup/rollup/pull/5985): Improve approximation of coarse sourcemap segments (@TrickyPi)
19+
- [#5986](https://github.com/rollup/rollup/pull/5986): Remove limit on max parallel file ops (@lukastaegert)
20+
321
## 4.43.0
422

523
_2025-06-11_

browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rollup/browser",
3-
"version": "4.43.0",
3+
"version": "4.44.0",
44
"description": "Next-generation ES module bundler browser build",
55
"main": "dist/rollup.browser.js",
66
"module": "dist/es/rollup.browser.js",

docs/configuration-options/index.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -633,13 +633,23 @@ buildWithCache()
633633

634634
### maxParallelFileOps {#maxparallelfileops}
635635

636+
<<<<<<< HEAD
636637
| | |
637638
| -----: | :------------------------------ |
638639
| 类型: | `number` |
639640
| CLI: | `--maxParallelFileOps <number>` |
640641
| 默认: | 20 |
641642

642643
该选项限制 rollup 在读取模块或写入 chunk 时,同时能打开的文件数量。如果没有限制或者数值足够高,构建可能会失败,显示“EMFILE: Too many open files”(EMFILE:打开的文件数过多)。这取决于操作系统限制的句柄数(open file handles)大小。
644+
=======
645+
| | |
646+
| -------: | :------------------------------ |
647+
| Type: | `number` |
648+
| CLI: | `--maxParallelFileOps <number>` |
649+
| Default: | `Infinity` |
650+
651+
Limits the number of files rollup will open in parallel when reading modules or writing chunks. Without a limit or with a high enough value, builds can fail with an "EMFILE: too many open files". This depends on how many open file handles the operating system allows. If you set the limit too low and use plugins that rely on the [`this.load`](../plugin-development/index.md#this-load) context function, such as the `commonjs` plugin, then it can happen that builds stall without an error message as it limits the number of parallel `load` calls.
652+
>>>>>>> 37d1915060e08b84326bee0713444eec7162de88
643653
644654
### onLog {#onlog}
645655

0 commit comments

Comments
 (0)