-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.config.js
129 lines (101 loc) · 2.94 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
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
import { readdir } from 'fs';
import path from 'path';
import { promisify } from 'util';
import del from 'del';
import camelCase from 'camelcase';
import replace from '@rollup/plugin-replace';
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
import babel from 'rollup-plugin-babel';
import { terser } from 'rollup-plugin-terser';
import filesize from 'rollup-plugin-filesize';
import babelConfig from './babel.config.json';
const readDir = promisify(readdir);
const PACKAGES_DIR = path.join(process.cwd(), 'packages');
const builds = {
modern: [{ format: 'es' }],
legacy: [{ format: 'cjs' }, { format: 'amd' }, { format: 'umd' }],
browser: [{ format: 'umd', minify: true }],
};
const globals = {
autotyper: 'autotyper',
'component-emitter': 'Emitter',
jquery: 'jQuery',
};
const getPlugins = buildType =>
[
replace({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
}),
json({
exclude: 'node_modules/**',
preferConst: true,
}),
buildType !== 'modern' &&
babel({
babelrc: false,
exclude: 'node_modules/**',
...babelConfig,
}),
resolve(),
commonjs(),
].filter(Boolean);
const getBuildPlugins = minify => [
minify
? terser()
: terser({
mangle: false,
compress: false,
output: {
beautify: true,
indent_level: 2,
},
}),
filesize(),
];
const getFilename = (format, minify) => {
const parts = ['index'];
if (!minify && format !== 'cjs') {
parts.push(format);
}
if (minify) {
parts.push('min');
}
parts.push('js');
return parts.join('.');
};
const getExternal = (buildType, dependencies, peerDependencies) => {
if (buildType === 'browser') {
return Object.keys(peerDependencies);
}
return [...Object.keys(dependencies), ...Object.keys(peerDependencies)];
};
export default async () => {
const packageNames = await readDir(PACKAGES_DIR);
const configs = await Promise.all(
packageNames.map(async name => {
const dir = path.join(PACKAGES_DIR, name);
const manifestPath = path.join(dir, 'package.json');
const { dependencies, peerDependencies = {} } = require(manifestPath);
const input = path.join(dir, 'src/index.js');
const outputDir = path.join(dir, 'dist');
await del(`${outputDir}/*`);
return Object.entries(builds).map(([buildType, outputs]) => ({
input,
plugins: getPlugins(buildType),
external: getExternal(buildType, dependencies, peerDependencies),
output: outputs.map(({ format, minify }) => ({
file: path.join(outputDir, getFilename(format, minify)),
format,
name: camelCase(name),
sourcemap: minify,
globals,
exports: 'named',
plugins: getBuildPlugins(minify),
})),
}));
}),
);
return configs.flat();
};