@ray-js/builder-component
v1.5.45
Published
Ray builder for component
Downloads
3,026
Readme
@ray-js/builder-component
组件构建器,将文件按运行时拆分为多文件。
Examples
全平台转换
input:
src/index.ts
output:
index.web.js
index.wechat.js
index.native.js
index.js
按需平台
input:
src/index.ts
src/index.wechat.ts
output:
index.web.js
index.wechat.js # 原文件转换
index.native.js
index.js