-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.mjs
49 lines (48 loc) · 1001 Bytes
/
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
import babel from '@rollup/plugin-babel';
import filesize from 'rollup-plugin-filesize';
import postcss from 'rollup-plugin-postcss'
import resolve from '@rollup/plugin-node-resolve';
import terser from '@rollup/plugin-terser';
export default [
{
input: '+/main.js',
output: [
{
file: 'assets/blackbar.js',
format: 'iife',
plugins: [
terser(),
],
},
],
plugins: [
resolve(),
filesize(),
babel({
babelHelpers: 'bundled',
presets: [
['@babel/preset-env', {
include: ['@babel/plugin-proposal-optional-chaining'],
}],
],
}),
]
},
{
input: '+/main.css',
onwarn (warning, warn) {
if (warning.code === 'FILE_NAME_CONFLICT') return
warn(warning)
},
output: {
file: 'assets/blackbar.css',
},
plugins: [
filesize(),
postcss({
extract: true,
minimize: true,
}),
]
},
]