ant-design / ant-design-mobile-rn

Ant Design for React Native
https://rn.mobile.ant.design/
MIT License
3.02k stars 609 forks source link

请问项目如何pub #1239

Closed xbdtb closed 2 years ago

xbdtb commented 2 years ago

Reproduction link

https://github.com/ant-design/ant-design-mobile-rn

Steps to reproduce

执行npm run pub失败,

What is expected?

能够成功执行antd-tools run dist

What is actually happening?

执行报错,报webpack.config.js文件不是对象

Environment Info
antd undefined
React 17
System macOS
Browser Chrome 98

原因是执行antd-tools run dist步骤时报错,进一步原因是webpack.config.js导出的是异步函数的原因

1uokun commented 2 years ago

着急用的话先改成下面这样的

const getWebpackConfig = require('@ant-design/tools/lib/getWebpackConfig.js')
const webpackConfig = getWebpackConfig(false)

module.exports = webpackConfig
1uokun commented 2 years ago

TODO:之前的webpack配置还是要保留,新支持的expo开发环境要做分离

xbdtb commented 2 years ago

好的,成功了!多谢大侠的迅速回复和指教!