Framework updates
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
18
node_modules/webpack/lib/Compilation.js
generated
vendored
18
node_modules/webpack/lib/Compilation.js
generated
vendored
@@ -4019,7 +4019,7 @@ Or do you want to use the entrypoints '${name}' and '${runtime}' independently o
|
||||
* @param {string | ChunkGroupOptions} groupOptions options for the chunk group
|
||||
* @param {Module=} module the module the references the chunk group
|
||||
* @param {DependencyLocation=} loc the location from with the chunk group is referenced (inside of module)
|
||||
* @param {string=} request the request from which the the chunk group is referenced
|
||||
* @param {string=} request the request from which the chunk group is referenced
|
||||
* @returns {ChunkGroup} the new or existing chunk group
|
||||
*/
|
||||
addChunkInGroup(groupOptions, module, loc, request) {
|
||||
@@ -4067,7 +4067,7 @@ Or do you want to use the entrypoints '${name}' and '${runtime}' independently o
|
||||
* @param {EntryOptions} options options for the entrypoint
|
||||
* @param {Module} module the module the references the chunk group
|
||||
* @param {DependencyLocation} loc the location from with the chunk group is referenced (inside of module)
|
||||
* @param {string} request the request from which the the chunk group is referenced
|
||||
* @param {string} request the request from which the chunk group is referenced
|
||||
* @returns {Entrypoint} the new or existing entrypoint
|
||||
*/
|
||||
addAsyncEntrypoint(options, module, loc, request) {
|
||||
@@ -4531,12 +4531,14 @@ Or do you want to use the entrypoints '${name}' and '${runtime}' independently o
|
||||
(e) => e.chunks[e.chunks.length - 1]
|
||||
)
|
||||
)) {
|
||||
const otherInfo =
|
||||
/** @type {RuntimeChunkInfo} */
|
||||
(runtimeChunksMap.get(other));
|
||||
otherInfo.referencedBy.push(info);
|
||||
info.remaining++;
|
||||
remaining++;
|
||||
const otherInfo = runtimeChunksMap.get(other);
|
||||
// other may be a non-runtime chunk (e.g. worker chunk)
|
||||
// when you have a worker chunk in your app.js (new Worker(...)) and as a separate entry point
|
||||
if (otherInfo) {
|
||||
otherInfo.referencedBy.push(info);
|
||||
info.remaining++;
|
||||
remaining++;
|
||||
}
|
||||
}
|
||||
}
|
||||
/** @type {Chunk[]} */
|
||||
|
||||
Reference in New Issue
Block a user