-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
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
支持npm自定义入口吗? #1203
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
CC @luckyadam |
现在还不支持,但这是一个很好的想法 |
我希望 package.json 支持如下入口: {
"taro":"taro 默认入口",
"taro:h5": "taro-h5.js",
"taro:rn": "taro-rn.js",
"taro:weapp": "taro-weapp.js",
// ...
} 或者支持打包时依据平台不同可以设置npm映射,在config中: {
weapp:{
npm: {
akita: "akita/lib/taro"
}
}
} |
暂不支持,后续可以搞一下 |
browser 字段是有个社区的 spec 的: https://github.com/defunctzombie/package-browser-field-spec webpack 设计了一个更通用的 https://webpack.js.org/configuration/resolve/#resolve-aliasfields 的机制,可以指定 resolve 的时候将 package.json 中的哪些字段作为 alias 的配置来使用。如果 taro 用的是 webpack 打包的话可以直接使用这个功能实现这个需求。 这里有个例子: mpvue/mpvue-quickstart#31 |
收到~ 感谢李工~ 我研究下~ |
目前有进展吗? |
目前进展如何了 |
Taro 2、3 使用 webpack 构建,可以直接配置 aliasfields 了 |
我有一个跨平台的npm包,在不同平台打包时使用不同的入口,package.json 是这样设置的:
小程序官方原生使用的入口是miniprogram,请问taro有专用入口吗?
The text was updated successfully, but these errors were encountered: