Skip to content

Commit e059b9f

Browse files
committed
[Flight] Fix webpack plugin to use chunk groups
1 parent 842ee36 commit e059b9f

File tree

1 file changed

+24
-19
lines changed

1 file changed

+24
-19
lines changed

packages/react-server-dom-webpack/src/ReactFlightWebpackPlugin.js

+24-19
Original file line numberDiff line numberDiff line change
@@ -170,26 +170,31 @@ export default class ReactFlightWebpackPlugin {
170170

171171
compiler.hooks.emit.tap(PLUGIN_NAME, compilation => {
172172
const json = {};
173-
compilation.chunks.forEach(chunk => {
174-
chunk.getModules().forEach(mod => {
175-
// TOOD: Hook into deps instead of the target module.
176-
// That way we know by the type of dep whether to include.
177-
// It also resolves conflicts when the same module is in multiple chunks.
178-
if (!/\.client\.js$/.test(mod.resource)) {
179-
return;
180-
}
181-
const moduleExports = {};
182-
['', '*'].concat(mod.buildMeta.providedExports).forEach(name => {
183-
moduleExports[name] = {
184-
id: mod.id,
185-
chunks: chunk.ids,
186-
name: name,
187-
};
173+
compilation.chunkGroups.forEach(chunkGroup => {
174+
const chunkIds = chunkGroup.chunks.map(c => c.id);
175+
chunkGroup.chunks.forEach(chunk => {
176+
chunk.getModules().forEach(function(mod) {
177+
// TODO: Hook into deps instead of the target module.
178+
// That way we know by the type of dep whether to include.
179+
// It also resolves conflicts when the same module is in multiple chunks.
180+
if (!/\.client\.js$/.test(mod.resource)) {
181+
return;
182+
}
183+
const moduleExports = {};
184+
['', '*']
185+
.concat(mod.buildMeta.providedExports)
186+
.forEach(function(name) {
187+
moduleExports[name] = {
188+
id: mod.id,
189+
chunks: chunkIds,
190+
name: name,
191+
};
192+
});
193+
const href = pathToFileURL(mod.resource).href;
194+
if (href !== undefined) {
195+
json[href] = moduleExports;
196+
}
188197
});
189-
const href = pathToFileURL(mod.resource).href;
190-
if (href !== undefined) {
191-
json[href] = moduleExports;
192-
}
193198
});
194199
});
195200
const output = JSON.stringify(json, null, 2);

0 commit comments

Comments
 (0)