-
Notifications
You must be signed in to change notification settings - Fork 3
/
rollup.config.js
86 lines (81 loc) · 1.92 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import { uglify } from 'rollup-plugin-uglify';
import buble from '@rollup/plugin-buble';
import resolve from '@rollup/plugin-node-resolve';
import typescript from '@rollup/plugin-typescript';
import polyfill from 'rollup-plugin-polyfill';
import tsconfig from './src/tsconfig.json';
import pkg from './package.json';
delete tsconfig.compilerOptions.declaration;
delete tsconfig.compilerOptions.declarationDir;
delete tsconfig.compilerOptions.outDir;
const banner = `
/*!
* mdui.editor ${pkg.version} (${pkg.homepage})
* Copyright 2019-${new Date().getFullYear()} ${pkg.author}
* Licensed under ${pkg.license}
*/
`.trim();
export default [
// 编译测 ES6 模块化文件
{
input: './src/index.ts',
output: {
strict: true,
name: 'Editor',
banner,
sourcemap: true,
format: 'es',
file: './dist/js/editor.esm.js',
},
plugins: [resolve(), typescript(tsconfig.compilerOptions)],
},
// 编译成 umd 文件
{
input: './src/index.ts',
output: {
strict: true,
name: 'Editor',
banner,
sourcemap: true,
format: 'umd',
file: './dist/js/editor.js',
},
plugins: [
resolve(),
typescript(tsconfig.compilerOptions),
buble(),
polyfill([
'mdn-polyfills/MouseEvent',
'mdn-polyfills/CustomEvent',
'promise-polyfill/src/polyfill',
]),
],
},
// 编译成 umd 文件,并压缩
{
input: './src/index.ts',
output: {
strict: true,
name: 'Editor',
banner,
sourcemap: true,
format: 'umd',
file: './dist/js/editor.min.js',
},
plugins: [
resolve(),
typescript(tsconfig.compilerOptions),
buble(),
polyfill([
'mdn-polyfills/MouseEvent',
'mdn-polyfills/CustomEvent',
'promise-polyfill/src/polyfill',
]),
uglify({
output: {
preamble: banner,
},
}),
],
},
];