-
Notifications
You must be signed in to change notification settings - Fork 79
/
rollup.config.js
47 lines (46 loc) · 1.02 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
import { nodeResolve } from '@rollup/plugin-node-resolve';
import terser from '@rollup/plugin-terser';
import { transform, Features } from 'lightningcss';
/** @type {import('rollup').RollupOptions} */
export default {
input: 'src/index.js',
output: [
{
file: 'dist/ass.js',
format: 'esm',
},
{
file: 'dist/ass.min.js',
format: 'esm',
plugins: [terser()],
},
{
file: 'dist/ass.global.js',
format: 'iife',
name: 'ASS',
},
{
file: 'dist/ass.global.min.js',
format: 'iife',
name: 'ASS',
plugins: [terser()],
},
],
plugins: [
nodeResolve(),
{
transform(code, id) {
if (id.endsWith('.css')) {
const result = transform({
filename: id,
code: new TextEncoder().encode(code),
minify: true,
include: Features.Nesting,
});
return { code: `export default '${result.code.toString()}';` };
}
return null;
},
},
],
};