1 Star 0 Fork 8

哈哈哈/logsets

forked from fisher/logsets 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 3.38 KB
一键复制 编辑 原始数据 按行查看 历史
fisher 提交于 2023-06-19 18:01 . refactor: 调整代码目录结构
import clear from 'rollup-plugin-clear'
import { babel } from '@rollup/plugin-babel';
import commonjs from '@rollup/plugin-commonjs';
import { terser } from "rollup-plugin-terser";
// import resolve from "@rollup/plugin-node-resolve"
const plugins = [
//resolve(),
commonjs(),
babel({
babelHelpers:"runtime",
exclude: 'node_modules/**'
}),
clear({targets:["dist"]}),
terser()
]
export default [
{
input: './src/index.js',
output: [
{
file: 'dist/index.mjs',
format:"es"
},
{
file: 'dist/index.cjs',
exports:"default",
format:"cjs"
}
],
plugins,
external:["@babel/runtime"]
},
{
input: './src/utils.js',
output: [
{
file: 'dist/utils.mjs',
format:"es"
},
{
file: 'dist/utils.cjs',
format:"cjs"
}
],
plugins,
external:["@babel/runtime"]
}
// {
// input: './table.plugin.js',
// output: [
// {
// file: 'dist/table.plugin.mjs',
// format:"es"
// },
// {
// file: 'dist/table.plugin.cjs',
// exports:"default",
// format:"cjs"
// }
// ],
// plugins,
// external:["@babel/runtime"]
// },
// {
// input: './progressbar.plugin.js',
// output: [
// {
// file: 'dist/progressbar.plugin.mjs',
// format:"es"
// },
// {
// file: 'dist/progressbar.plugin.cjs',
// exports:"default",
// format:"cjs"
// }
// ],
// plugins,
// external:["@babel/runtime"]
// },
// {
// input: './tasklist.plugin.js',
// output: [
// {
// file: 'dist/tasklist.plugin.mjs',
// format:"es"
// },
// {
// file: 'dist/tasklist.plugin.cjs',
// exports:"default",
// format:"cjs"
// }
// ],
// plugins,
// external:["@babel/runtime"]
// },
// {
// input: './banner.plugin.js',
// output: [
// {
// file: 'dist/banner.plugin.mjs',
// format:"es"
// },
// {
// file: 'dist/banner.plugin.cjs',
// exports:"default",
// format:"cjs"
// }
// ],
// plugins,
// external:["@babel/runtime"]
// },
// {
// input: './tree.plugin.js',
// output: [
// {
// file: 'dist/tree.plugin.mjs',
// format:"es"
// },
// {
// file: 'dist/tree.plugin.cjs',
// exports:"default",
// format:"cjs"
// }
// ],
// plugins,
// external:["@babel/runtime"]
// }
]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/lynn_lyk/logsets.git
git@gitee.com:lynn_lyk/logsets.git
lynn_lyk
logsets
logsets
master

搜索帮助