当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.mjs 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
小弟调调 提交于 2023-04-06 09:51 . chore: update rollup config.
import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import terser from '@rollup/plugin-terser';
import json from '@rollup/plugin-json';
import sizes from 'rollup-plugin-sizes';
import * as banner from 'bannerjs';
import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const pkg = require('./package.json');
export default [
{
input: 'src/main.js',
output: [
{
file: 'dist/notify.common.js',
format: 'cjs',
name: 'Notify',
exports: 'auto',
banner: banner.multibanner(),
sourcemap: true,
},
{
file: pkg.module,
format: 'es',
name: 'Notify',
banner: banner.multibanner(),
sourcemap: true,
},
],
plugins: [
json(),
nodeResolve({
browser: true,
}),
commonjs(),
sizes(),
],
},
{
input: 'src/main.js',
output: [
{
file: pkg.unpkg,
format: 'umd',
// format: 'iife',
name: 'Notify',
banner: banner.multibanner(),
sourcemap: true,
},
],
plugins: [
json(),
nodeResolve({
browser: true,
}),
commonjs(),
sizes(),
],
},
{
input: 'src/main.js',
output: [
{
file: pkg.unpkg.replace(/.js$/, '.min.js'),
format: 'umd',
// format: 'iife',
name: 'Notify',
banner: banner.onebanner(),
sourcemap: true,
},
],
plugins: [
json(),
nodeResolve({
browser: true,
}),
terser(),
commonjs(),
sizes(),
],
},
];
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化