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
微信小程序
小程序基础库: 2.4.0 使用框架: React
添加一个自定义平台插件 在@tarojs/mini-runner 包的dist/index.js 40行打印webpackConfig.entry.runtime 就能发现问题 另外 无论在entry里添加多少入口文件 都不会被打包 这样会导致扩展的平台插件runtime无法被编译出 目前使用官方推荐的企业微信插件包就出现了这个问题
在webpackConfig.entry中添加的入口文件能被编译
webpackConfig.entry.runtime 被@tarojs/mini-runner /dist/webpack/webpack.chain.js 格式化是出现格式问题
在webpackConfig中添加的entry文件不能被编译
Taro CLI 3.0.17 environment info: System: OS: Windows 10 Binaries: Node: 12.17.0 - D:\Program Files\nodejs\node.EXE Yarn: 1.22.4 - C:\Program Files (x86)\Yarn\bin\yarn.CMD npm: 6.14.4 - D:\Program Files\nodejs\npm.CMD
感觉是在@tarojs/mini-runner 在编译的时候 过滤掉了entry的其他入口文件 只保留了webpackConfig.entry.app webpackConfig.entry.runtime在@tarojs/mini-runner /dist/webpack/webpack.chain.js 格式化的时候就出现了错误
The text was updated successfully, but these errors were encountered:
我现在的解决方案只能把runtime手动在应用的入口文件顶部导入
Sorry, something went wrong.
@leo-ran
老哥你的 CLI 版本是不是不对,要用 3.1 beta 版本: 3.1.0-beta.4。
3.1.0-beta.4
webpackConfig.entry.runtime 是什么?
webpackConfig.entry.runtime
增加 entry 的操作也是不能理解,app 作为 entry 就可以了。
如果还有问题,可以再详细描述一下,最好有 demo。
企业微信插件运作正常,复现不了,先关闭了。
Chen-jj
No branches or pull requests
相关平台
微信小程序
小程序基础库: 2.4.0
使用框架: React
复现步骤
添加一个自定义平台插件
在@tarojs/mini-runner 包的dist/index.js 40行打印webpackConfig.entry.runtime 就能发现问题
另外 无论在entry里添加多少入口文件 都不会被打包
这样会导致扩展的平台插件runtime无法被编译出
目前使用官方推荐的企业微信插件包就出现了这个问题
期望结果
在webpackConfig.entry中添加的入口文件能被编译
实际结果
webpackConfig.entry.runtime 被@tarojs/mini-runner /dist/webpack/webpack.chain.js 格式化是出现格式问题
在webpackConfig中添加的entry文件不能被编译
环境信息
补充信息
感觉是在@tarojs/mini-runner 在编译的时候 过滤掉了entry的其他入口文件 只保留了webpackConfig.entry.app
webpackConfig.entry.runtime在@tarojs/mini-runner /dist/webpack/webpack.chain.js 格式化的时候就出现了错误
The text was updated successfully, but these errors were encountered: