We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 765b448 commit 9f16eacCopy full SHA for 9f16eac
.changeset/strange-years-cross.md
@@ -0,0 +1,5 @@
1
+---
2
+'@module-federation/manifest': patch
3
4
+
5
+fix(manifest): collect cached modules since rspack support cache
packages/manifest/src/StatsManager.ts
@@ -337,8 +337,9 @@ class StatsManager {
337
};
338
if (this._bundler === 'webpack') {
339
statsOptions['cached'] = true;
340
- statsOptions['cachedModules'] = true;
341
}
+ statsOptions['cachedModules'] = true;
342
343
const webpackStats = liveStats.toJson(statsOptions);
344
345
const filteredModules = this._getFilteredModules(webpackStats);
0 commit comments