Closed oasis-cloud closed 2 weeks ago
此次变更主要集中在@nutui/nutui-react-taro
包的package.json
文件和scripts/rn/update-taro-entry.js
文件上。在package.json
中,dev:taro
相关脚本的命令被修改,以在执行原有命令之前添加pnpm update:taro:entry
命令。在scripts/rn/update-taro-entry.js
中,引入了新的环境变量C
,并根据该变量的值调整了组件的处理逻辑,以便在配置中仅包含特定组件。
文件路径 | 更改摘要 |
---|---|
package.json |
更新dev:taro 脚本命令,添加pnpm update:taro:entry 命令到多个子命令之前。 |
scripts/rn/update-taro-entry.js |
添加环境变量C 的处理,定义specialComponent(name) 函数,调整createConfig 函数以根据param 条件过滤组件。 |
package.json
脚本,直接涉及到与主PR相同的dev:taro
命令的更改。package.json
脚本,特别是在执行各种Taro环境的原始命令之前添加了运行pnpm run update:taro:entry
的命令,与主PR的更改一致。package.json
中引入了一个新的脚本,用于升级Taro依赖项,与主PR中Taro脚本和命令的整体管理相关。package.json
中的Taro版本,相关于主PR对package.json
文件的修改。size/M
在草地上跳跃,欢快无比,
新命令来临,像春风拂面。
组件筛选,灵动如兔,
代码更新,乐在其中。
我们一起欢庆,编程的乐趣,
让每个脚本,都闪耀光芒! 🐇✨
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 83.98%. Comparing base (
ce66f75
) to head (fbbbd85
). Report is 1 commits behind head on V3.0.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
通过增加环境变量,来指定构建哪个组件。这样在鸿蒙编译的时候可以降低编译时长。
命令形式:
C=componentName pnpm dev:taro:jdharmonycpp
, componentName 是组件的名称且忽略大小写。Summary by CodeRabbit
新功能
修复