UNPKG

hel-tpl-remote-lib

Version:

基于[hel-micro](https://github.com/tnfe/hel)搭建的远程仓库模板库

14 lines (10 loc) 497 B
import { exposeLib } from 'hel-lib-proxy'; // import { appGroupName } from '../../package.json' // 如果从 package.json 直接导出 appGroupName // rollup 打包需要配置 @rollup/plugin-json // webpack 打包会把整个 package 对象打到运行代码里 const LIB_NAME = 'hel-tpl-remote-lib'; const lib = exposeLib(LIB_NAME); // suport writing: import { regs, num, myMod } from 'hel-tpl-remote-lib'; const { regs, num, myMod, } = lib; export { lib as default, lib, myMod, num, regs };