-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
72 lines (66 loc) · 1.78 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
import path from 'path';
import crypto from 'crypto';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import alias from '@rollup/plugin-alias';
import postcss from 'rollup-plugin-postcss';
import copy from 'rollup-plugin-copy';
import del from 'rollup-plugin-delete';
import esbuild from 'rollup-plugin-esbuild';
import svgr from '@svgr/rollup';
const md5 = str => crypto.createHash('md5').update(str).digest('hex');
const external = ['react', 'react-dom', 'react/jsx-runtime'];
const customResolver = resolve({
extensions: ['.js', '.jsx', '.ts', '.tsx'],
});
const convertCase = str => {
return str
.split(/(?=[A-Z])/)
.join('_')
.toLowerCase();
};
export default {
input: 'src/components/index.ts',
output: [
{
file: 'dist/index.js',
format: 'cjs',
sourceMap: true,
},
{
file: 'dist/index.mjs',
format: 'es',
sourceMap: true,
},
],
plugins: [
del({ targets: 'dist/*', runOnce: true }),
copy({ targets: [{ src: 'src/styles/zen.css', dest: 'dist' }] }),
postcss({
extract: 'styles.css',
sourceMap: true,
minimize: true,
modules: {
generateScopedName: function (name, filename, css) {
const file = path.basename(filename, '.css').replace('.module', '');
const hash = Buffer.from(md5(`${name}:${filename}:${css}`))
.toString('base64')
.substring(0, 5);
return `zen-${convertCase(file)}-${name}-${hash}`;
},
},
}),
svgr({ icon: true }),
alias({
entries: [{ find: /^@/, replacement: path.resolve('./src') }],
customResolver,
}),
resolve(),
commonjs(),
esbuild(),
],
external,
onwarn(warning, warn) {
// Ignore all warnings
},
};