-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
91 lines (82 loc) · 2.25 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
87
88
89
90
91
import path from 'path';
import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
import postcss from 'rollup-plugin-postcss';
import resolve from 'rollup-plugin-node-resolve';
import json from 'rollup-plugin-json';
import copy from 'rollup-plugin-copy';
import autoExternal from 'rollup-plugin-auto-external';
const typescript = require('rollup-plugin-typescript2');
const PACKAGE_ROOT_PATH = process.cwd();
const INPUT_FILE = path.join(PACKAGE_ROOT_PATH, 'src/index.ts');
const PKG_JSON = require(path.join(PACKAGE_ROOT_PATH, 'package.json'));
const ALL_FORMATS = [
{ fmt: 'umd', ts: 'es5', dest: 'dist', file: 'dist/index.js' },
{ fmt: 'es', ts: 'esnext', dest: 'es', file: 'es/index.js' },
{ fmt: 'cjs', ts: 'es5', dest: 'lib', file: 'lib/index.js' },
];
const defaultPluginsCb = () => [typescript(), resolve(), commonjs()];
const defaultExternalCb = fmt => {
if (fmt === 'umd') {
return ['react', 'react-dom'];
} else {
return [
...Object.keys(PKG_JSON.dependencies || {}),
...Object.keys(PKG_JSON.peerDependencies || {}),
];
}
};
const defaultGlobalsCb = fmt => {
if (fmt === 'umd') {
return {
react: 'React',
'react-dom': 'ReactDOM',
};
} else {
return {};
}
};
export default function generateRollupConfig({
formatArr = ['es'],
input = INPUT_FILE,
plugins = defaultPluginsCb,
external = defaultExternalCb,
output = {},
}) {
const allowFormats = ALL_FORMATS.filter(v => formatArr.includes(v.fmt));
return allowFormats.map(format => {
const processedConfig = {
input,
output: Object.assign(
{
file: path.join(PACKAGE_ROOT_PATH, format.file),
format: format.fmt,
sourcemap: false,
name: PKG_JSON.name,
strict: false,
globals: defaultGlobalsCb(format.fmt),
},
output
),
};
// 处理external
if (typeof external === 'function') {
processedConfig.external = external(format.fmt);
} else {
processedConfig.external = external;
}
// 处理plugins
processedConfig.plugins = plugins(format);
return processedConfig;
});
}
export const plugins = {
babel,
typescript,
resolve,
json,
postcss,
commonjs,
autoExternal,
copy,
};