@@ -170,26 +170,31 @@ export default class ReactFlightWebpackPlugin {
170
170
171
171
compiler . hooks . emit . tap ( PLUGIN_NAME , compilation => {
172
172
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 ( ! / \. c l i e n t \. j s $ / . 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 ( ! / \. c l i e n t \. j s $ / . 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
+ }
188
197
} ) ;
189
- const href = pathToFileURL ( mod . resource ) . href ;
190
- if ( href !== undefined ) {
191
- json [ href ] = moduleExports ;
192
- }
193
198
} ) ;
194
199
} ) ;
195
200
const output = JSON . stringify ( json , null , 2 ) ;
0 commit comments