UNPKG

covert-json-to-excel

Version:

传入json,可自定义表格标题名称和列数、头部名称、过滤列和绑定生成开始与成功的回调函数

18 lines (17 loc) 326 B
import babel from "rollup-plugin-babel"; import { uglify } from "rollup-plugin-uglify"; export default { input: "src/index.js", output: { file: "dist/index.js", format: "umd", name: "customJson2excel", minify: true }, plugins: [ babel({ exclude: "node_modules/**" }), uglify() ] };