-
Notifications
You must be signed in to change notification settings - Fork 206
/
rollup.config.mjs
144 lines (141 loc) · 3.56 KB
/
rollup.config.mjs
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
import commonjs from '@rollup/plugin-commonjs';
import nodeResolve from '@rollup/plugin-node-resolve';
import babel from '@rollup/plugin-babel';
import terser from '@rollup/plugin-terser';
import replace from '@rollup/plugin-replace';
// import strip from '@rollup/plugin-strip';
import filesize from 'rollup-plugin-filesize';
// import { visualizer } from 'rollup-plugin-visualizer';
import { builtinModules } from 'module';
import process from 'node:process';
// import path from 'node:path';
// import { URL, fileURLToPath } from 'node:url';
// import fse from 'fs-extra';
import babelConfig from './babel.config.mjs';
// const WORKING_DIRECTORY = fileURLToPath(new URL('.', import.meta.url));
const __DEV__ = String(process.env.NODE_ENV).trim() === 'development';
const EXTENSIONS = ['.ts', '.tsx', '.js', '.jsx', '.es6', '.es', '.mjs'];
const buildBanner = (pkg) => {
// see docs: https://github.com/terser/terser#keeping-copyright-notices-or-other-comments
return `/*!
* ${pkg.name}
* @description ${pkg.description}
* @version ${pkg.version}
* @date ${new Date().toLocaleString()}
* @author AntVis
* @docs https://g.antv.antgroup.com/
*/`;
};
/**
* @return {import('rollup').RollupOptions}
*/
export function createConfig({
pkg,
external = [],
umdName = '',
globals = {},
plugins = [],
}) {
const enableSourceMap = true;
const banner = buildBanner(pkg);
const sharedConfig = {
watch: {
include: 'src/**',
},
onwarn: (warning, warn) => {
if (warning.code === 'CIRCULAR_DEPENDENCY') {
return;
}
warn(warning);
},
strictDeprecations: true,
input: 'src/index.ts',
plugins: [
nodeResolve({
mainFields: ['module', 'browser', 'main'],
extensions: EXTENSIONS,
}),
babel({
...babelConfig,
babelrc: false,
exclude: [/\/node_modules\//],
extensions: EXTENSIONS,
babelHelpers: 'runtime',
}),
commonjs({ sourceMap: true }),
replace({
preventAssignment: true,
values: {
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
__DEV__,
},
sourceMap: enableSourceMap,
}),
...plugins,
// strip({
// include: ['src/**/*.(ts|tsx|js|jsx|mjs)'],
// sourceMap: enableSourceMap,
// }),
filesize(),
],
};
return [
{
...sharedConfig,
output: [
{
format: 'cjs',
file: pkg.main,
exports: 'named',
banner,
sourcemap: enableSourceMap,
},
{
format: 'es',
file: pkg.module,
banner,
sourcemap: enableSourceMap,
},
],
external: [
/@babel\/runtime/,
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
...builtinModules,
...external,
],
},
{
...sharedConfig,
output: {
format: 'umd',
file: pkg.unpkg,
name: umdName,
globals,
banner,
sourcemap: enableSourceMap,
plugins: [
// visualizer({
// sourcemap: sourceMap,
// open: true,
// gzipSize: true,
// brotliSize: false,
// }),
],
},
external,
plugins: [
...sharedConfig.plugins,
terser({
compress: {
pure_getters: true,
unsafe: true,
unsafe_comps: true,
warnings: false,
},
sourceMap: enableSourceMap,
}),
],
},
];
}