This repository was archived by the owner on Oct 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
106 lines (94 loc) · 2.56 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
// @ts-check
import { readdirSync } from 'fs';
import { terser } from 'rollup-plugin-terser';
import filesize from 'rollup-plugin-filesize';
import typescript from 'rollup-plugin-typescript2';
// if (!('toPascalCase' in String.prototype)) {
// Object.defineProperty(String.prototype, 'toPascalCase', {
// value: function toPascalCase() {
// return !this.length ?
// '' :
// this.split(/[^0-9a-z]/gi).map(n => `${n[0].toUpperCase()}${n.slice(1)}`).join('');
// },
// });
// }
const allModules = readdirSync('./src').filter((n) => {
const isIndex = 'index.ts' === n;
const notFile = !/\.(js|ts)x?$/i.test(n);
const notCustomTypings = 'custom_typings' !== n;
const notLib = 'lib' !== n;
return isIndex || (notFile && notCustomTypings && notLib);
});
function pluginFn(format, minify) {
return [
typescript({
tsconfig: './tsconfig.prod.json',
useTsconfigDeclarationDir: true,
}),
minify && terser({
compress: true,
mangle: {
module: 'esm' === format,
properties: { regex: /^_/ },
reserved: ['SignaturError'],
safari10: true,
toplevel: true,
},
output: { safari10: true },
safari10: true,
toplevel: true,
}),
filesize({ showBrotliSize: true }),
];
};
const multiBuild = allModules.reduce((p, n) => {
const src = `src${'index.ts' === n ? '' : `/${n}`}`;
const dest = `dist${'index.ts' === n ? '' : `/${n}`}`;
const tmpl = [
{
file: `${dest}/index.js`,
format: 'esm',
exports: 'named',
},
{
file: `${dest}/index.cjs`,
format: 'cjs',
exports: 'named',
},
];
for (const o of tmpl) {
const { file, format } = o;
const raw = {
input: `${src}/index.ts`,
output: {
...o,
sourcemap: true,
sourcemapExcludeSources: true,
},
plugins: pluginFn(format),
experimentalOptimizeChunks: true,
treeshake: { moduleSifeEffects: false },
external: [
'../lib/clone-deep',
'../lib/parse5',
'./deep-clone/index.js',
'./fetch-as/index.js',
'./lit-ntml/index.js',
'./normalize-diacritics/index.js',
'./scryptify/index.js',
'./signatur/index.js',
'./utc-date/index.js',
'./utc-time/index.js',
'crypto',
],
};
const minified = {
...raw,
output: { ...raw.output, file: file.replace(/(.+)(\.m?js)$/, '$1.min$2') },
plugins: pluginFn(format, true),
};
p.push(raw, minified);
}
return p;
}, []);
export default multiBuild;