Skip to content

Commit 49cb2a8

Browse files
committed
docs(en): merging all conflicts
2 parents e298f24 + ab7bfa8 commit 49cb2a8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+814
-138
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# rollup changelog
22

3+
## 4.36.0
4+
5+
_2025-03-17_
6+
7+
### Features
8+
9+
- Extend `renderDynamicImport` hook to provide information about static dependencies of the imported module (#5870)
10+
- Export several additional types used by Vite (#5879)
11+
12+
### Bug Fixes
13+
14+
- Do not merge chunks if that would create a top-level await cycle between chunks (#5843)
15+
16+
### Pull Requests
17+
18+
- [#5843](https://github.com/rollup/rollup/pull/5843): avoiding top level await circular (@TrickyPi, @lukastaegert)
19+
- [#5870](https://github.com/rollup/rollup/pull/5870): draft for extended renderDynamicImport hook (@iczero, @lukastaegert)
20+
- [#5876](https://github.com/rollup/rollup/pull/5876): Update axios overrides to 1.8.2 (@vadym-khodak)
21+
- [#5877](https://github.com/rollup/rollup/pull/5877): chore(deps): update dependency eslint-plugin-vue to v10 (@renovate[bot])
22+
- [#5878](https://github.com/rollup/rollup/pull/5878): fix(deps): lock file maintenance minor/patch updates (@renovate[bot])
23+
- [#5879](https://github.com/rollup/rollup/pull/5879): fix: export types (@sxzz)
24+
325
## 4.35.0
426

527
_2025-03-08_

browser/package.json

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

docs/plugin-development/index.md

+81
Original file line numberDiff line numberDiff line change
@@ -1059,12 +1059,44 @@ type renderDynamicImportHook = (options: {
10591059
format: string;
10601060
moduleId: string;
10611061
targetModuleId: string | null;
1062+
chunk: PreRenderedChunkWithFileName;
1063+
targetChunk: PreRenderedChunkWithFileName;
1064+
getTargetChunkImports: () => DynamicImportTargetChunk[] | null;
10621065
}) => { left: string; right: string } | null;
1066+
1067+
type PreRenderedChunkWithFileName = PreRenderedChunk & { fileName: string };
1068+
1069+
type DynamicImportTargetChunk =
1070+
| ImportedInternalChunk
1071+
| ImportedExternalChunk;
1072+
1073+
interface ImportedInternalChunk {
1074+
type: 'internal';
1075+
fileName: string;
1076+
resolvedImportPath: string;
1077+
chunk: PreRenderedChunk;
1078+
}
1079+
1080+
interface ImportedExternalChunk {
1081+
type: 'external';
1082+
fileName: string;
1083+
resolvedImportPath: string;
1084+
}
10631085
```
10641086

1087+
<<<<<<< HEAD
10651088
此钩子通过提供导入表达式参数左侧(`import(`)和右侧(`)`)的代码替换,提供了对动态导入如何呈现的细粒度控制。返回`null`将推迟到此类型的其他钩子,最终呈现特定于格式的默认值。
10661089

10671090
`format` 是呈现的输出格式, `moduleId` 是执行动态导入的模块的 ID。如果导入可以解析为内部或外部 ID,则 `targetModuleId` 将设置为此 ID,否则将为 `null`。如果动态导入包含由 [`resolveDynamicImport`](#resolvedynamicimport) 钩子解析为替换字符串的非字符串表达式,则 `customResolution` 将包含该字符串。
1091+
=======
1092+
See the [`chunkFileNames`](../configuration-options/index.md#output-chunkfilenames) option for the `PreRenderedChunk` type.
1093+
1094+
This hook provides fine-grained control over how dynamic imports are rendered by providing replacements for the code to the left (`import(`) and right (`)`) of the argument of the import expression. Returning `null` defers to other hooks of this type and ultimately renders a format-specific default.
1095+
1096+
`format` is the rendered output format, `moduleId` the id of the module performing the dynamic import. If the import could be resolved to an internal or external id, then `targetModuleId` will be set to this id, otherwise it will be `null`. If the dynamic import contained a non-string expression that was resolved by a [`resolveDynamicImport`](#resolvedynamicimport) hook to a replacement string, then `customResolution` will contain that string. `chunk` and `targetChunk` provide additional information about the chunk performing the import and the chunk being imported (the target chunk), respectively. `getTargetChunkImports` returns an array containing chunks which are imported by the target chunk. If the target chunk is unresolved or external, `targetChunk` will be null and `getTargetChunkImports` will return null.
1097+
1098+
The `PreRenderedChunkWithFileName` type is identical to the `PreRenderedChunk` type except for the addition of the `fileName` field, which contains the path and file name of the chunk. `fileName` may contain a placeholder if the chunk file name format contains a hash.
1099+
>>>>>>> ab7bfa8fe9c25e41cc62058fa2dcde6b321fd51d
10681100
10691101
以下代码将使用自定义处理程序替换所有动态导入,添加 `import.meta.url` 作为第二个参数,以允许处理程序正确解析相对导入:
10701102

@@ -1116,7 +1148,56 @@ function retainImportExpressionPlugin() {
11161148
}
11171149
```
11181150
1151+
<<<<<<< HEAD
11191152
请注意,当此钩子在非 ES 格式中重写动态导入时,不会生成任何交互代码以确保例如默认导出可用作`.default`。插件有责任确保重写的动态导入返回一个 Promise,该 Promise 解析为适当的命名空间对象。
1153+
=======
1154+
When a dynamic import occurs, the browser will fetch the requested module and parse it. If the target module is discovered to have imports and they have not already been fetched, the browser must perform more network requests before it can execute the module. This will incur the latency of an additional network round trip. For static modules, Rollup will hoist transitive dependencies ([`hoistTransitiveDependencies`](../configuration-options/index.md#output-hoisttransitiveimports)) to prevent this from occuring. However, dependency hoisting is currently not automatically performed for dynamic imports.
1155+
1156+
The following plugin can achieve similar preloading behavior for dynamic imports:
1157+
1158+
```js twoslash
1159+
// ---cut-start---
1160+
/** @returns {import('rollup').Plugin} */
1161+
// ---cut-end---
1162+
function dynamicImportDependencyPreloader() {
1163+
return {
1164+
name: 'dynamic-import-dependency-preloader',
1165+
renderDynamicImport({ getTargetChunkImports }) {
1166+
const transitiveImports = getTargetChunkImports();
1167+
if (transitiveImports && transitiveImports.length > 0) {
1168+
const preload = getTargetChunkImports()
1169+
.map(
1170+
chunk => `\t/* preload */ import(${chunk.resolvedImportPath})`
1171+
)
1172+
.join(',\n');
1173+
return {
1174+
left: `(\n${preload},\n\timport(`,
1175+
right: `)\n)`
1176+
};
1177+
} else {
1178+
return null;
1179+
}
1180+
}
1181+
};
1182+
}
1183+
```
1184+
1185+
<!-- prettier-ignore-start -->
1186+
```js
1187+
// input
1188+
import('./lib.js');
1189+
1190+
// output
1191+
(
1192+
/* preload */ import('./dependency-1.js'),
1193+
/* preload */ import('./dependency-2.js'),
1194+
import('./lib.js');
1195+
);
1196+
```
1197+
<!-- prettier-ignore-end -->
1198+
1199+
Note that when this hook rewrites dynamic imports in non-ES formats, no interop code to make sure that e.g. the default export is available as `.default` is generated. It is the responsibility of the plugin to make sure the rewritten dynamic import returns a Promise that resolves to a proper namespace object.
1200+
>>>>>>> ab7bfa8fe9c25e41cc62058fa2dcde6b321fd51d
11201201
11211202
### renderError
11221203

package-lock.json

+21-98
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rollup",
3-
"version": "4.35.0",
3+
"version": "4.36.0",
44
"description": "Next-generation ES module bundler",
55
"main": "dist/rollup.js",
66
"module": "dist/es/rollup.js",
@@ -160,7 +160,7 @@
160160
"eslint-config-prettier": "^10.1.1",
161161
"eslint-plugin-prettier": "^5.2.3",
162162
"eslint-plugin-unicorn": "^57.0.0",
163-
"eslint-plugin-vue": "^9.33.0",
163+
"eslint-plugin-vue": "^10.0.0",
164164
"fixturify": "^3.0.0",
165165
"flru": "^1.0.2",
166166
"fs-extra": "^11.3.0",
@@ -203,7 +203,7 @@
203203
"yargs-parser": "^21.1.1"
204204
},
205205
"overrides": {
206-
"axios": "^1.8.1",
206+
"axios": "^1.8.3",
207207
"semver": "^7.7.1",
208208
"readable-stream": "npm:@built-in/readable-stream@1",
209209
"esbuild": ">0.24.2"

src/Bundle.ts

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export default class Bundle {
7171
this.pluginDriver.setChunkInformation(this.facadeChunkByModule);
7272
for (const chunk of chunks) {
7373
chunk.generateExports();
74+
chunk.inlineTransitiveImports();
7475
}
7576

7677
timeEnd('generate chunks', 2);

0 commit comments

Comments
 (0)