-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
59 lines (55 loc) · 1.77 KB
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import babel from '@rollup/plugin-babel';
// import commonjs from '@rollup/plugin-commonjs';
// import resolve from '@rollup/plugin-node-resolve';
import filesize from 'rollup-plugin-filesize';
import {terser} from 'rollup-plugin-terser';
// import postcss from 'rollup-plugin-postcss';
import pkg from './package.json';
const bannerData =
`/**!
* ${pkg.name}
*
* @version: ${pkg.version}
* @date: ${new Date().getFullYear()}.${parseInt(new Date().getMonth()+1)}.${new Date().getDate()}
* @copyright: ${pkg.author}
* @issues: ${pkg.bugs.url}
*/`;
const defaultOutBase = {compact: true, banner: bannerData, name: pkg.name};
const cjOutBase = {...defaultOutBase, format: "cjs", exports: "named"};
const esmOutBase = {...defaultOutBase, format: "es", exports: "named"};
const umdOutBase = {...defaultOutBase, format: "umd", esModule: false, /* , exports: "named" */};
const minOutBase = {...defaultOutBase, plugins: [ terser() ], sourcemap: true};
export default [
{
input: "./src/index.js",
output: [
// {
// ...cjOutBase,
// file: `dist/${pkg.name}.cjs.js`,
// },
{
...esmOutBase,
file: `dist/${pkg.name}.esm.js`
},
{
...umdOutBase,
file: `dist/${pkg.name}.js`
},
{
...umdOutBase,
...minOutBase,
file: `dist/${pkg.name}.min.js`
},
],
plugins: [
filesize(),
babel({
exclude: "node_modules/**",
babelHelpers: 'bundled',
}),
// 如果源码使用commonjs规范编写,则需要开启
// resolve(),
// commonjs()
]
},
]