We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
node_modules 文件夹内的 ESM Module 语法依赖分析有误,对于 node_modules 内的如下 js 文件:
import aaa from "./aaa.js"; import bbb from "./bbb.js"; export default { aaa, bbb }
如果在某个页面中 import 的话,最终只有 aaa.js 被复制到了 dist/npm 中,bbb.js 这个依赖没有正确分析。
aaa.js
bbb.js
大概知道哪的问题我先处理看看,搞不定再转文老板。
如问题描述
对于问题描述中的例子,应当正确解析出 aaa.js 与 bbb.js 两个依赖。
无
The text was updated successfully, but these errors were encountered:
fix(cli): 修复 issue #43
bf539aa
1675fe6
zcfan
No branches or pull requests
Description
node_modules 文件夹内的 ESM Module 语法依赖分析有误,对于 node_modules 内的如下 js 文件:
如果在某个页面中 import 的话,最终只有
aaa.js
被复制到了 dist/npm 中,bbb.js
这个依赖没有正确分析。大概知道哪的问题我先处理看看,搞不定再转文老板。
Environment
Reproduce
如问题描述
Observed Results
如问题描述
Expected Results
对于问题描述中的例子,应当正确解析出
aaa.js
与bbb.js
两个依赖。Relevant Code / Logs
无
The text was updated successfully, but these errors were encountered: