1.1.6 • Published 8 months ago

luao-rollup v1.1.6

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago

luao-rollup

修复打包报错

示例

import { buildReact } from '../dist/index.js'
buildReact()
  • 配置示例 luao.rollup-config.js
export default {
  removeHtmlFile: true,

  codeBabelType: 'node', //默认React; 支持React,node
  esm: {
    type: 'rollup',
    minify: false,
    importLibToEs: true,
    dir: 'dist',
  },
  umd: false,
}