File tree Expand file tree Collapse file tree 5 files changed +280
-141
lines changed Expand file tree Collapse file tree 5 files changed +280
-141
lines changed Original file line number Diff line number Diff line change 55
55
"react-dom" : " ^18.2.0" ,
56
56
"regenerator-runtime" : " ^0.13.11" ,
57
57
"style-loader" : " ^3.3.3" ,
58
- "webpack" : " ^5.88.1 " ,
58
+ "webpack" : " ~5.98.0 " ,
59
59
"webpack-cli" : " ^5.1.4"
60
60
},
61
61
"engines" : {
Original file line number Diff line number Diff line change 58
58
"del-cli" : " ^5.0.0" ,
59
59
"opentracing" : " ^0.14.7" ,
60
60
"typescript" : " ^5.1.6" ,
61
- "webpack" : " ^5.88.1 "
61
+ "webpack" : " ~5.98.0 "
62
62
},
63
63
"jest" : {
64
64
"testEnvironment" : " node"
Original file line number Diff line number Diff line change 169
169
"type-of" : " ^2.0.1" ,
170
170
"url-loader" : " ^4.1.1" ,
171
171
"uuid" : " ^8.3.2" ,
172
- "webpack" : " ^5.88.1 " ,
172
+ "webpack" : " ~5.98.0 " ,
173
173
"webpack-dev-middleware" : " ^5.3.4" ,
174
174
"webpack-merge" : " ^5.9.0" ,
175
175
"webpack-stats-plugin" : " ^1.1.3" ,
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ function getHashes(
25
25
26
26
for ( const childChunkGroup of chunkGroup . childrenIterable ) {
27
27
const isNotImportedByAsyncRequires = childChunkGroup . origins . every (
28
- origin => ! origin . module . identifier ( ) . includes ( `async-requires` )
28
+ origin =>
29
+ ! origin . module || ! origin . module . identifier ( ) . includes ( `async-requires` )
29
30
)
30
31
31
32
if ( isNotImportedByAsyncRequires ) {
You can’t perform that action at this time.
0 commit comments