-
Notifications
You must be signed in to change notification settings - Fork 4
/
rollup.config.js
73 lines (70 loc) · 1.43 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
import html from 'rollup-plugin-html';
import minify from 'rollup-plugin-minify-es';
import babel from 'rollup-plugin-babel';
let fileName = 'myuw-badge';
let objName = 'MyUWBadge';
let plugins = {
full: [
html({
include: `src/*.html`,
htmlMinifierOptions: {
collapseWhitespace: true,
collapseBooleanAttributes: true,
conservativeCollapse: true
}
})
],
min: [
html({
include: `src/*.html`,
htmlMinifierOptions: {
collapseWhitespace: true,
collapseBooleanAttributes: true,
conservativeCollapse: true
}
}),
minify({
output: {
wrap_iife: true
}
})
]
};
export default [
{
input: `src/${fileName}.js`,
plugins: plugins.full.concat([babel({exclude: 'node_modules/**'})]),
output: {
file: `dist/${fileName}.js`,
name: objName,
format: 'iife'
}
},
{
input: `src/${fileName}.js`,
plugins: plugins.min.concat([babel({exclude: 'node_modules/**'})]),
output: {
file: `dist/${fileName}.min.js`,
name: objName,
format: 'iife'
}
},
{
input: `src/${fileName}.js`,
plugins: plugins.full,
output: {
file: `dist/${fileName}.mjs`,
name: objName,
format: 'es'
}
},
{
input: `src/${fileName}.js`,
plugins: plugins.min,
output: {
file: `dist/${fileName}.min.mjs`,
name: objName,
format: 'es'
}
},
];