Tencent / wepy

小程序组件化开发框架
https://wepyjs.gitee.io/wepy-docs/
Other
22.54k stars 3.05k forks source link

公司级 wepy plugins 的使用 #1655

Open songguangyu opened 6 years ago

songguangyu commented 6 years ago

Description

使用公司的私有npm仓库,不能以 wepy-plugin-xxx 的命名方式安装到node_modules 里 现在插件只能以对象的形势引用

Environment

wepy v 1.7.2

Reproduce

plugins 不能以数组的形式引入 必须以对象的形式引入 module.exports.plugins = {}

Expected Results

像webpack 一样 module.exports.plugins = [ new X({})]

songguangyu commented 6 years ago

@Gcaufy

songguangyu commented 6 years ago

@Gcaufy

songguangyu commented 6 years ago

image 看了下 代码只支持Object的方式 不支持数组的方式 建议改进

stale[bot] commented 6 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. 因为这个 Issue 最近没有任何有效回复,所以被自动标记为了stale。 如果在未来7天依旧没有任何激活操作,那么该 Issue 将会被自动关闭。 感谢您的提问。

Gcaufy commented 6 years ago

2.x 中是以Array方式引入的。 1.7 的版本中暂不会处理。

songguangyu commented 6 years ago

我提交了一个pr在1.7中 但是没有被合并