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
常见的 umd webpack 的配置方式如下:
output: { library: 'micro', libraryTarget: 'umd', }
另外,webpack 还支持 string[] 的设置:
output: { library: ['scope', 'micro'], libraryTarget: 'umd', }
详见。
icestark 需要支持解析这种导出规范。
setLibraryName(['scope', 'microapp']);
The text was updated successfully, but these errors were encountered:
feat: 🎸 parse library the right way if library is an array
b22a7be
✅ Closes: #287
feat: 🎸 parse library the right way if library is an array (#288)
844a9bb
cdb9d6c
Successfully merging a pull request may close this issue.
背景
常见的 umd webpack 的配置方式如下:
另外,webpack 还支持 string[] 的设置:
详见。
icestark 需要支持解析这种导出规范。
使用方式
The text was updated successfully, but these errors were encountered: