fix(webpack-plugin): 兼容 webpack 5.109 的 AST 位置信息变更 - #2567
Open
mackwang112 wants to merge 1 commit into
Open
Conversation
mackwang112
force-pushed
the
fix/webpack-5-109-require-async-location
branch
from
August 13, 2026 06:43
f530545 to
4586167
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
问题背景
webpack 5.109.0 起不再在 AST 节点上提供 loc,第三方插件需要通过 parser.getLocation(node) 获取位置信息。@mpxjs/webpack-plugin 在处理 require.async 时仍读取 expr.loc,导致新版 webpack 下依赖对象的 loc 为 undefined,并触发构建错误。
修改内容
验证结果