yzend
Results
2
issues of
yzend
es6转换问题
1
**Describe the bug** 源项目是 微信,再编译后转 es5 Set的解构有问题 以及 array的entries() 迭代器转换问题 **To Reproduce** Steps to reproduce the behavior: let a = [1,2,3] a = [...new Set(a)] console.log(a, 'a') // [] a为空数组...
**Is your feature request related to a problem? Please describe.** 目前项目用的是kbone和原始小程序的混合开发,目前编译会提示报错找不到 miniprogram-element 这个原生组件 **Describe the solution you'd like** 对于部分组件引用路径可以不进行编译 例如 `usingComponents: { "buttonCom": "/kboneComponents/components/buttonCom/index" }` 不进行kboneComponents 下的编译 **Describe alternatives you've...