-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
47 lines (46 loc) · 1.12 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 pkg from './package.json';
import cjs from 'rollup-plugin-commonjs';
import url from 'rollup-plugin-url'
import { terser } from 'rollup-plugin-terser'
import cssnano from 'cssnano';
import postcss from 'rollup-plugin-postcss'
import babel from 'rollup-plugin-babel';
function pgl() {
return [
babel({
exclude: "node_modules/**"
}),
cjs(),
url({
include: ['**/*.svg', '**/*.png', '**/*.jpg', '**/*.gif', '**/*.woff', '**/*.woff2'],
limit: Infinity,
publicPath: '/assets',
}),
postcss({
plugins: [
cssnano(),
],
extensions: [ '.css' ],
}),
terser()
];
}
export default [
{
input: './index.js',
output: {
name: 'xdoBrowserFilter',
file: `dist/xdo-brower-filter.umd.js`,
format: 'umd'
},
plugins: pgl()
},
{
input: './index.js',
output: [
{ file: pkg.main, format: 'cjs' },
{ file: pkg.module, format: 'es' }
],
plugins: pgl()
}
];